1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-08-18 08:19:38 +02:00

Complete reject reason for multi-part

This commit is contained in:
Roxedus 2021-11-22 10:14:30 +00:00 committed by Robin Dadswell
parent 9c86c20c00
commit 025634cd19

View File

@ -42,7 +42,7 @@ public Decision IsSatisfiedBy(LocalMovie localMovie, DownloadClientItem download
{
_logger.Debug("Rejected Multi-Part File: {0}", localMovie.Path);
return Decision.Reject("File is suspected multi-part file, Radarr doesn't support");
return Decision.Reject("File is suspected multi-part file, Radarr doesn't support this");
}
}
}