From 1ad77e00ff3def36a061843d7af4133d14f5c22c Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Sat, 25 Sep 2010 11:31:33 +0000 Subject: [PATCH] BUGFIX: Added support for | (OR) operator in RSS feed downloader --- Changelog | 1 + src/feeddownloader.h | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changelog b/Changelog index 95bea1d71..1b27d0e26 100644 --- a/Changelog +++ b/Changelog @@ -7,6 +7,7 @@ - BUGFIX: Fix 'download in scan dir' persistence - BUGFIX: Add .torrent extension only when missing (torrent creator) - BUGFIX: Fix possible issue with temporary download path persistence + - BUGFIX: Added support for | (OR) operator in RSS feed downloader * Tue Aug 24 2010 - Christophe Dumez - v2.4.0 - FEATURE: Added actions to "Move to top/bottom" of priority queue diff --git a/src/feeddownloader.h b/src/feeddownloader.h index 63ee31d5e..15777ef71 100644 --- a/src/feeddownloader.h +++ b/src/feeddownloader.h @@ -105,7 +105,7 @@ public: QStringList getNotMatchingTokens() const { QString notmatching = this->value("not", "").toString(); - return notmatching.split(" "); + return notmatching.split(QRegExp("[\\s|]")); } QString getNotMatchingTokens_str() const {