Browse Source

Add more RSS debug

adaptive-webui-19844
Christophe Dumez 13 years ago
parent
commit
1c6ef50b77
  1. 11
      src/rss/rssfeed.cpp

11
src/rss/rssfeed.cpp

@ -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,8 +235,10 @@ 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();
}
} }
} }
@ -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;
} }

Loading…
Cancel
Save