Fixed: Sending notifications for Custom Script with unparsed artist

(cherry picked from commit 76b1130b6811454fa6b1e80e0b2012c24c4ae8fa)
This commit is contained in:
Bogdan 2025-04-29 03:09:14 +03:00
parent c51b5c6fba
commit 72fa05cf41

View file

@ -347,7 +347,7 @@ namespace NzbDrone.Core.Notifications.CustomScript
{ {
if (artist == null) if (artist == null)
{ {
return null; return new List<string>();
} }
return _tagRepository.GetTags(artist.Tags) return _tagRepository.GetTags(artist.Tags)