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:
scott%scott-macgregor.org 2004-08-31 23:05:29 +00:00
Родитель f8dc1a4998
Коммит b557adef4c
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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])