From 191e2774f8629f1f854cd7bf28c6aad65fdaae9c Mon Sep 17 00:00:00 2001 From: Paulo McNally Date: Sun, 5 May 2013 20:27:21 -0700 Subject: [PATCH] guid in rss addeded For example http://feeds.hipertextual.com/alt1040 guid is original link to article --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 5a0458c..fa3884d 100644 --- a/index.js +++ b/index.js @@ -181,6 +181,7 @@ FeedRead.rss = function(xml, source, callback) { , author: child_data(art, "author") || child_data(art, "dc:creator") , link: child_data(art, "link") + , guid: child_data(art, "guid") , feed: meta }; if (obj.published) obj.published = new Date(obj.published);