Add more RSS debug

This commit is contained in:
Christophe Dumez 2012-07-11 18:17:27 +03:00
parent 497e2e92f8
commit 1c6ef50b77

View File

@ -211,6 +211,7 @@ QString RssFeed::iconUrl() const {
void RssFeed::parseRSSChannel(QXmlStreamReader& xml) void RssFeed::parseRSSChannel(QXmlStreamReader& xml)
{ {
qDebug() << Q_FUNC_INFO;
Q_ASSERT(xml.isStartElement() && xml.name() == "channel"); Q_ASSERT(xml.isStartElement() && xml.name() == "channel");
while (xml.readNextStartElement()) { while (xml.readNextStartElement()) {
@ -234,10 +235,12 @@ void RssFeed::parseRSSChannel(QXmlStreamReader& xml)
article->markAsRead(); article->markAsRead();
m_articles[guid] = article; m_articles[guid] = article;
} }
} else } else {
qDebug() << "Skipping RSS tag: " << xml.name();
xml.skipCurrentElement(); xml.skipCurrentElement();
} }
} }
}
// read and create items from a rss document // read and create items from a rss document
bool RssFeed::parseRSS(QIODevice* device) bool RssFeed::parseRSS(QIODevice* device)
@ -262,8 +265,12 @@ bool RssFeed::parseRSS(QIODevice* device)
xml.skipCurrentElement(); xml.skipCurrentElement();
} }
if (xml.error()) {
qWarning() << "Error parsing RSS document: " << xml.errorString();
}
if (!found_channel) { if (!found_channel) {
qDebug() << m_url << " is not a valid RSS feed"; qWarning() << m_url << " is not a valid RSS feed";
return false; return false;
} }