From 620220b2698953bd055b067a08bc1d929a230015 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Mon, 30 Sep 2024 17:19:32 +0300 Subject: [PATCH] Add new category for FL --- .../Indexers/FileList/FileListSettings.cs | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/src/NzbDrone.Core/Indexers/FileList/FileListSettings.cs b/src/NzbDrone.Core/Indexers/FileList/FileListSettings.cs index 1c8c7477d..9cff94744 100644 --- a/src/NzbDrone.Core/Indexers/FileList/FileListSettings.cs +++ b/src/NzbDrone.Core/Indexers/FileList/FileListSettings.cs @@ -75,17 +75,19 @@ namespace NzbDrone.Core.Indexers.FileList public enum FileListCategories { - [FieldOption] + [FieldOption(Label = "Anime")] Anime = 24, - [FieldOption] + [FieldOption(Label = "Animation")] Animation = 15, - [FieldOption] + [FieldOption(Label = "TV 4K")] TV_4K = 27, - [FieldOption] + [FieldOption(Label = "TV HD")] TV_HD = 21, - [FieldOption] + [FieldOption(Label = "TV SD")] TV_SD = 23, - [FieldOption] - Sport = 13 + [FieldOption(Label = "Sport")] + Sport = 13, + [FieldOption(Label = "RO Dubbed")] + RoDubbed = 28 } }