mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-13 18:17:08 -07:00
Don't process new/updated RSS rules when disabled
This commit is contained in:
parent
e5001e8f40
commit
22bdf98617
1 changed files with 2 additions and 0 deletions
|
@ -424,6 +424,8 @@ bool AutoDownloader::isProcessingEnabled() const
|
||||||
void AutoDownloader::resetProcessingQueue()
|
void AutoDownloader::resetProcessingQueue()
|
||||||
{
|
{
|
||||||
m_processingQueue.clear();
|
m_processingQueue.clear();
|
||||||
|
if (!m_processingEnabled) return;
|
||||||
|
|
||||||
foreach (Article *article, Session::instance()->rootFolder()->articles()) {
|
foreach (Article *article, Session::instance()->rootFolder()->articles()) {
|
||||||
if (!article->isRead() && !article->torrentUrl().isEmpty())
|
if (!article->isRead() && !article->torrentUrl().isEmpty())
|
||||||
addJobForArticle(article);
|
addJobForArticle(article);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue