From a5e5a63e452394f5fd74aba100077f2b6d33a5c5 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 13 May 2025 00:41:16 +0300 Subject: [PATCH] Fixed: Upgrade notification title for Apprise --- src/NzbDrone.Core/Notifications/Apprise/Apprise.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Apprise/Apprise.cs b/src/NzbDrone.Core/Notifications/Apprise/Apprise.cs index be2ac0c6ce..3267c4d969 100644 --- a/src/NzbDrone.Core/Notifications/Apprise/Apprise.cs +++ b/src/NzbDrone.Core/Notifications/Apprise/Apprise.cs @@ -27,7 +27,7 @@ public override void OnGrab(GrabMessage grabMessage) public override void OnDownload(DownloadMessage message) { - _proxy.SendNotification(MOVIE_DOWNLOADED_TITLE, message.Message, GetPosterUrl(message.Movie), Settings); + _proxy.SendNotification(message.OldMovieFiles.Any() ? MOVIE_UPGRADED_TITLE : MOVIE_DOWNLOADED_TITLE, message.Message, GetPosterUrl(message.Movie), Settings); } public override void OnMovieAdded(Movie movie)