Browse Source

RSS: Support items that don't have a guid (closes #1001777)

adaptive-webui-19844
Christophe Dumez 13 years ago
parent
commit
e6e2baf3a8
  1. 14
      src/rss/rssarticle.cpp

14
src/rss/rssarticle.cpp

@ -31,6 +31,7 @@
#include <QRegExp> #include <QRegExp>
#include <QVariant> #include <QVariant>
#include <QStringList> #include <QStringList>
#include <QDebug>
#include <iostream> #include <iostream>
@ -246,8 +247,17 @@ RssArticlePtr xmlToRssArticle(RssFeed* parent, QXmlStreamReader& xml)
xml.skipCurrentElement(); xml.skipCurrentElement();
} }
if (guid.isEmpty()) if (guid.isEmpty()) {
return RssArticlePtr(); // Item does not have a guid, fall back to some other identifier
if (!link.isEmpty())
guid = link;
else if (!title.isEmpty())
guid = title;
else {
qWarning() << "Item has no guid, link or title, ignoring it...";
return RssArticlePtr();
}
}
RssArticlePtr art(new RssArticle(parent, guid)); RssArticlePtr art(new RssArticle(parent, guid));
art->m_title = title; art->m_title = title;

Loading…
Cancel
Save