1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-10 23:29:53 +02:00

Improve single file detected as full season messaging

This commit is contained in:
bakerboy448 2024-03-09 22:51:29 -06:00 committed by GitHub
parent 89bef4af99
commit a0329adeba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,8 +23,8 @@ public Decision IsSatisfiedBy(LocalEpisode localEpisode, DownloadClientItem down
if (localEpisode.FileEpisodeInfo.FullSeason)
{
_logger.Debug("Single episode file detected as containing all episodes in the season");
return Decision.Reject("Single episode file contains all episodes in seasons");
_logger.Debug("Single episode file detected as containing all episodes in the season due to no episode parsed from the file name.");
return Decision.Reject("Single episode file contains all episodes in seasons. Review file name or manually import");
}
return Decision.Accept();