From 72fa05cf41f3cd865f74fff5a39fdd2871964fd3 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Tue, 29 Apr 2025 03:09:14 +0300 Subject: [PATCH] Fixed: Sending notifications for Custom Script with unparsed artist (cherry picked from commit 76b1130b6811454fa6b1e80e0b2012c24c4ae8fa) --- src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs b/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs index 9610ef324..c657f8b16 100644 --- a/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs +++ b/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs @@ -347,7 +347,7 @@ namespace NzbDrone.Core.Notifications.CustomScript { if (artist == null) { - return null; + return new List(); } return _tagRepository.GetTags(artist.Tags)