1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-10 14:57:52 +00:00

Add missing 'return' statement

This commit is contained in:
Vladimir Golovnev (Glassez) 2018-05-21 21:24:02 +03:00
parent 9b80c4f7eb
commit 4f8ed09183
No known key found for this signature in database
GPG Key ID: 52A2C7DEE2DFA6F7

View File

@ -384,6 +384,8 @@ bool AutoDownloadRule::accepts(const QVariantHash &articleData)
m_dataPtr->previouslyMatchedEpisodes.append(m_dataPtr->lastComputedEpisode);
m_dataPtr->lastComputedEpisode.clear();
}
return true;
}
AutoDownloadRule &AutoDownloadRule::operator=(const AutoDownloadRule &other)