Add missing 'return' statement

This commit is contained in:
Vladimir Golovnev (Glassez) 2018-05-21 21:24:02 +03:00 committed by sledgehammer999
parent d94b8f08ab
commit 54354a2732
No known key found for this signature in database
GPG key ID: 6E4A2D025B7CC9A2

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)