зеркало из https://github.com/mozilla/pjs.git
Bug #253775 --> When parsing RSS 2.0 feeds, parse the content:encoded tag for each feed.
Patch by Myk.
This commit is contained in:
Родитель
1aaef95bce
Коммит
09135f8254
|
@ -250,6 +250,10 @@ Feed.prototype.parseAsRSS2 = function() {
|
|||
|| itemNode.getElementsByTagName("date")[0])
|
||||
|| item.date;
|
||||
|
||||
var content = getNodeValue(itemNode.getElementsByTagNameNS(RSS_CONTENT_NS, "encoded")[0]);
|
||||
if (content)
|
||||
item.content = content;
|
||||
|
||||
this.itemsToStore[i] = item;
|
||||
}
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче