mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-23 08:48:07 -06:00
- BUGFIX: Read RSS articles are remembered on restart for feeds with no torr
ents attached
This commit is contained in:
@@ -2,6 +2,7 @@
|
|||||||
- BUGFIX: Fix RSS Feed downloader for some feeds
|
- BUGFIX: Fix RSS Feed downloader for some feeds
|
||||||
- BUGFIX: Do not use home folder as a fallback when the save path is not accessible
|
- BUGFIX: Do not use home folder as a fallback when the save path is not accessible
|
||||||
- BUGFIX: Fix Mininova, ThePirateBay search engine plugins
|
- BUGFIX: Fix Mininova, ThePirateBay search engine plugins
|
||||||
|
- BUGFIX: Read RSS articles are remembered on restart for feeds with no torrents attached
|
||||||
|
|
||||||
* Sun Dec 13 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.1
|
* Sun Dec 13 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.1
|
||||||
- BUGFIX: µTorrent user-agent is now spoofed correctly
|
- BUGFIX: µTorrent user-agent is now spoofed correctly
|
||||||
|
|||||||
@@ -298,7 +298,7 @@ public:
|
|||||||
|
|
||||||
RssItem(RssStream* parent, QString _title, QString _torrent_url, QString _news_link, QString _description, QDateTime _date, QString _author, bool _read):
|
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){
|
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;
|
is_valid = true;
|
||||||
} else {
|
} else {
|
||||||
std::cerr << "ERROR: an invalid RSS item was saved" << std::endl;
|
std::cerr << "ERROR: an invalid RSS item was saved" << std::endl;
|
||||||
|
|||||||
Reference in New Issue
Block a user