mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-12-18 14:38:04 -06:00
Use correct separator for "OR" condition in RSS rules
Although RSS rules were correctly parsed, the wrong separator for the "OR" condition was used to re-generate the string of the rule displayed in the preferences. Closes #2205.
This commit is contained in:
@@ -156,7 +156,7 @@ QVariantHash RssDownloadRule::toVariantHash() const
|
||||
QVariantHash hash;
|
||||
hash["name"] = m_name;
|
||||
hash["must_contain"] = m_mustContain.join(" ");
|
||||
hash["must_not_contain"] = m_mustNotContain.join(" ");
|
||||
hash["must_not_contain"] = m_mustNotContain.join("|");
|
||||
hash["save_path"] = m_savePath;
|
||||
hash["affected_feeds"] = m_rssFeeds;
|
||||
hash["enabled"] = m_enabled;
|
||||
|
||||
Reference in New Issue
Block a user