[RSS] Handle more types of RSS feeds

This commit is contained in:
ngosang 2015-09-02 20:10:44 +02:00 committed by sledgehammer999
parent 600aa61095
commit 0ec35a24e0

View file

@ -283,6 +283,9 @@ void RssParser::parseRssArticle(QXmlStreamReader& xml, const QString& feedUrl)
} }
} }
if (!article.contains("torrent_url") && article.contains("news_link"))
article["torrent_url"] = article["news_link"];
if (!article.contains("id")) { if (!article.contains("id")) {
// Item does not have a guid, fall back to some other identifier // Item does not have a guid, fall back to some other identifier
const QString link = article.value("news_link").toString(); const QString link = article.value("news_link").toString();
@ -403,6 +406,9 @@ void RssParser::parseAtomArticle(QXmlStreamReader& xml, const QString& feedUrl,
} }
} }
if (!article.contains("torrent_url") && article.contains("news_link"))
article["torrent_url"] = article["news_link"];
if (!article.contains("id")) { if (!article.contains("id")) {
// Item does not have a guid, fall back to some other identifier // Item does not have a guid, fall back to some other identifier
const QString link = article.value("news_link").toString(); const QString link = article.value("news_link").toString();