From 8eadbacd7b8a59a3f8ecafff8c0eed761ce12009 Mon Sep 17 00:00:00 2001 From: Daniel Martin Gonzalez Date: Tue, 26 Aug 2025 15:05:40 +0200 Subject: [PATCH] fix: Notifications always include imdb link. IMDB link is included in the Notifications message always. Notification provider configuration is ignored. --- src/NzbDrone.Core/Notifications/NotificationService.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/NotificationService.cs b/src/NzbDrone.Core/Notifications/NotificationService.cs index ba43d98f35..aa970ca7e8 100644 --- a/src/NzbDrone.Core/Notifications/NotificationService.cs +++ b/src/NzbDrone.Core/Notifications/NotificationService.cs @@ -45,18 +45,13 @@ public NotificationService(INotificationFactory notificationFactory, INotificati private string GetMessage(Movie movie, QualityModel quality) { var qualityString = quality.Quality.ToString(); - var imdbUrl = "https://www.imdb.com/title/" + movie.MovieMetadata.Value.ImdbId + "/"; if (quality.Revision.Version > 1) { qualityString += " Proper"; } - return string.Format("{0} ({1}) [{2}] {3}", - movie.Title, - movie.Year, - qualityString, - imdbUrl); + return string.Format("{0} ({1}) [{2}]", movie.Title, movie.Year, qualityString); } private bool ShouldHandleMovie(ProviderDefinition definition, Movie movie)