Skip to content

Commit adeb6a2

Browse files
author
Ubuntu
committed
hack
1 parent a921962 commit adeb6a2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ var parseRSS2 = function(xmlObj, callback) {
3838
})
3939
if (item.description) {
4040
entry.content = item.description[0];
41-
entry.contentSnippet = Entities.decode(stripHtml(entry.content));
41+
entry.contentSnippet = entry.content;
42+
//entry.contentSnippet = Entities.decode(stripHtml(entry.content));
4243
}
4344
if (item.guid) {
4445
entry.guid = item.guid[0]._;

0 commit comments

Comments
 (0)