mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-12 18:24:58 +08:00
Add more RSS debug
This commit is contained in:
parent
1c6ef50b77
commit
d93a63e01a
@ -240,8 +240,10 @@ RssArticlePtr xmlToRssArticle(RssFeed* parent, QXmlStreamReader& xml)
|
|||||||
author = xml.readElementText();
|
author = xml.readElementText();
|
||||||
else if (xml.name() == "guid")
|
else if (xml.name() == "guid")
|
||||||
guid = xml.readElementText();
|
guid = xml.readElementText();
|
||||||
else
|
else {
|
||||||
|
qDebug() << "Skipping item tag: " << xml.name();
|
||||||
xml.skipCurrentElement();
|
xml.skipCurrentElement();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (guid.isEmpty()) {
|
if (guid.isEmpty()) {
|
||||||
|
@ -229,6 +229,7 @@ void RssFeed::parseRSSChannel(QXmlStreamReader& xml)
|
|||||||
}
|
}
|
||||||
else if (xml.name() == "item") {
|
else if (xml.name() == "item") {
|
||||||
RssArticlePtr article = xmlToRssArticle(this, xml);
|
RssArticlePtr article = xmlToRssArticle(this, xml);
|
||||||
|
qDebug() << "Found RSS Item, valid: " << (article ? "True" : "False");
|
||||||
if (article) {
|
if (article) {
|
||||||
QString guid = article->guid();
|
QString guid = article->guid();
|
||||||
if (m_articles.contains(guid) && m_articles[guid]->isRead())
|
if (m_articles.contains(guid) && m_articles[guid]->isRead())
|
||||||
|
Loading…
Reference in New Issue
Block a user