Add more RSS debug

This commit is contained in:
Christophe Dumez 2012-07-11 18:44:43 +03:00
parent 1c6ef50b77
commit d93a63e01a
2 changed files with 4 additions and 1 deletions

View file

@ -240,8 +240,10 @@ RssArticlePtr xmlToRssArticle(RssFeed* parent, QXmlStreamReader& xml)
author = xml.readElementText();
else if (xml.name() == "guid")
guid = xml.readElementText();
else
else {
qDebug() << "Skipping item tag: " << xml.name();
xml.skipCurrentElement();
}
}
if (guid.isEmpty()) {

View file

@ -229,6 +229,7 @@ void RssFeed::parseRSSChannel(QXmlStreamReader& xml)
}
else if (xml.name() == "item") {
RssArticlePtr article = xmlToRssArticle(this, xml);
qDebug() << "Found RSS Item, valid: " << (article ? "True" : "False");
if (article) {
QString guid = article->guid();
if (m_articles.contains(guid) && m_articles[guid]->isRead())