зеркало из https://github.com/mozilla/pjs.git
if the feed item has a link attribute, always use it before using the guid. Fixes some problems with planet.mozilla.org and
mozillazine feedhouse.
This commit is contained in:
Родитель
f8dc1a4998
Коммит
b557adef4c
|
@ -247,7 +247,7 @@ Feed.prototype.parseAsRSS2 = function() {
|
|||
guidNode.getAttribute('isPermaLink') == 'false' ? false : true;
|
||||
}
|
||||
|
||||
item.url = (guid && isPermaLink) ? guid : link ? link : null;
|
||||
item.url = link ? link : (guid && isPermaLink) ? guid : null;
|
||||
item.id = guid;
|
||||
item.description = getNodeValue(itemNode.getElementsByTagName("description")[0]);
|
||||
item.title = getNodeValue(itemNode.getElementsByTagName("title")[0])
|
||||
|
|
Загрузка…
Ссылка в новой задаче