Make the Smart filter to reject articles with an unrecognized episode number

PR #23340.
Closes #23313.
This commit is contained in:
Vladimir Golovnev 2025-10-08 12:51:21 +03:00 committed by GitHub
parent d5c173be16
commit 9a68a03f53
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -367,7 +367,7 @@ bool AutoDownloadRule::matchesSmartEpisodeFilter(const QString &articleTitle) co
const QString episodeStr = computeEpisodeName(articleTitle);
if (episodeStr.isEmpty())
return true;
return false; // Don't accept articles with unrecognized episode number
// See if this episode has been downloaded before
const bool previouslyMatched = m_dataPtr->previouslyMatchedEpisodes.contains(episodeStr);