From 90d0d8bec83eeb50a8bc833f4c5972ff08312a1a Mon Sep 17 00:00:00 2001 From: Qstick Date: Thu, 8 Sep 2022 20:22:45 -0500 Subject: [PATCH] Fixed: Defaults for Trakt Popular List Fixes #7576 --- .../ImportLists/Trakt/Popular/TraktPopularSettings.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/NzbDrone.Core/ImportLists/Trakt/Popular/TraktPopularSettings.cs b/src/NzbDrone.Core/ImportLists/Trakt/Popular/TraktPopularSettings.cs index 9aa312fd6..e3ccfb7bc 100644 --- a/src/NzbDrone.Core/ImportLists/Trakt/Popular/TraktPopularSettings.cs +++ b/src/NzbDrone.Core/ImportLists/Trakt/Popular/TraktPopularSettings.cs @@ -39,6 +39,10 @@ namespace NzbDrone.Core.ImportLists.Trakt.Popular public TraktPopularSettings() { TraktListType = (int)TraktPopularListType.Popular; + Rating = "0-100"; + Certification = "NR,G,PG,PG-13,R,NC-17"; + Genres = ""; + Years = ""; } [FieldDefinition(1, Label = "List Type", Type = FieldType.Select, SelectOptions = typeof(TraktPopularListType), HelpText = "Type of list you're seeking to import from")]