mirror of
https://github.com/Radarr/Radarr
synced 2025-01-03 13:54:29 +00:00
parent
075f024cec
commit
74539d2025
1 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
|||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
using NLog;
|
||||
using NzbDrone.Common.Extensions;
|
||||
using NzbDrone.Common.Instrumentation.Extensions;
|
||||
using NzbDrone.Common.TPL;
|
||||
using NzbDrone.Core.DecisionEngine;
|
||||
|
@ -84,7 +85,7 @@ private TSpec Get<TSpec>(Movie movie, bool userInvokedSearch, bool interactiveSe
|
|||
queryTranlations.Add(translation.Title);
|
||||
}
|
||||
|
||||
spec.SceneTitles = queryTranlations.Distinct().ToList();
|
||||
spec.SceneTitles = queryTranlations.Distinct().Where(t => t.IsNotNullOrWhiteSpace()).ToList();
|
||||
|
||||
return spec;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue