1
0
mirror of https://github.com/Radarr/Radarr synced 2025-10-06 02:02:54 +02:00

New: Improve Reject for Unknown Movie Messaging (#11063)

This commit is contained in:
bakerboy448
2025-07-08 18:25:51 -05:00
committed by Robin Dadswell
parent 03f53b595e
commit 2450468e74

View File

@@ -85,7 +85,7 @@ namespace NzbDrone.Core.DecisionEngine
if (remoteMovie.Movie == null)
{
decision = new DownloadDecision(remoteMovie, new DownloadRejection(DownloadRejectionReason.UnknownMovie, "Unknown Movie. Unable to identify correct movie using release name."));
decision = new DownloadDecision(remoteMovie, new DownloadRejection(DownloadRejectionReason.UnknownMovie, pushedRelease ? "Unknown Movie. Unable to match to existing movie in Library using release title." : "Unknown Movie. Unable to match to correct movie using release title."));
}
else
{