From b8a30be7bc55fe631bad3a19d1658ce258bf17ea Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Fri, 18 Dec 2009 14:45:07 +0000 Subject: [PATCH] - Read RSS items are now remembered correctly on restart for feeds with no torrents attached --- src/rss.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rss.h b/src/rss.h index 9cf1167d5..4770f6049 100644 --- a/src/rss.h +++ b/src/rss.h @@ -298,7 +298,7 @@ public: RssItem(RssStream* parent, QString _title, QString _torrent_url, QString _news_link, QString _description, QDateTime _date, QString _author, bool _read): parent(parent), title(_title), torrent_url(_torrent_url), news_link(_news_link), description(_description), date(_date), author(_author), read(_read){ - if(!title.isEmpty() && !torrent_url.isEmpty()) { + if(!title.isEmpty()) { is_valid = true; } else { std::cerr << "ERROR: an invalid RSS item was saved" << std::endl;