From f601ff98a238456f0577d8c641b4c52f1c029650 Mon Sep 17 00:00:00 2001 From: bakerboy448 <55419169+bakerboy448@users.noreply.github.com> Date: Mon, 1 Sep 2025 13:06:45 -0500 Subject: [PATCH] New: (FileList) Add Cat 31 and refresh urls --- .../Indexers/Definitions/FileList/FileList.cs | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/NzbDrone.Core/Indexers/Definitions/FileList/FileList.cs b/src/NzbDrone.Core/Indexers/Definitions/FileList/FileList.cs index ca34098a8..384dbd608 100644 --- a/src/NzbDrone.Core/Indexers/Definitions/FileList/FileList.cs +++ b/src/NzbDrone.Core/Indexers/Definitions/FileList/FileList.cs @@ -11,10 +11,17 @@ namespace NzbDrone.Core.Indexers.Definitions.FileList; public class FileList : TorrentIndexerBase { public override string Name => "FileList.io"; - public override string[] IndexerUrls => new[] { "https://filelist.io/" }; + public override string[] IndexerUrls => new[] + { + "https://filelist.io/", + "https://thefl.org/", + }; public override string[] LegacyUrls => new[] { "https://filelist.io", + "https://filelist.ro/", + "http://filelist.ro/", + "http://flro.org/", "https://flro.org/" }; public override string Description => "FileList (FL) is a ROMANIAN Private Torrent Tracker for 0DAY / GENERAL"; @@ -105,6 +112,7 @@ private IndexerCapabilities SetCapabilities() caps.Categories.AddCategoryMapping(27, NewznabStandardCategory.TVUHD, "Seriale 4K"); caps.Categories.AddCategoryMapping(28, NewznabStandardCategory.MoviesForeign, "RO Dubbed"); caps.Categories.AddCategoryMapping(28, NewznabStandardCategory.TVForeign, "RO Dubbed"); + caps.Categories.AddCategoryMapping(31, NewznabStandardCategory.TVForeign, "K-Drama"); return caps; }