mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-30 11:38:50 -07:00
Add more RSS debug
This commit is contained in:
parent
1c6ef50b77
commit
d93a63e01a
2 changed files with 4 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue