From 27efe506a7633a7a5d63dd92062c6d210412fc89 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Wed, 9 Apr 2025 09:19:20 +0300 Subject: [PATCH] Fixed: Sending Manual Interaction Needed for Custom Script with unparsed movie --- 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 49cc0c734a..b23653490d 100755 --- a/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs +++ b/src/NzbDrone.Core/Notifications/CustomScript/CustomScript.cs @@ -390,7 +390,7 @@ private List GetTagLabels(Movie movie) { if (movie == null) { - return null; + return new List(); } return _tagRepository.GetTags(movie.Tags)