mirror of
https://github.com/Radarr/Radarr
synced 2026-04-30 22:11:26 +02:00
Fixed: Change Filelist default URL
This commit is contained in:
parent
30c51ec4f3
commit
86363d5bf1
2 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ namespace NzbDrone.Core.Indexers.FileList
|
|||
{
|
||||
public class FileList : HttpIndexerBase<FileListSettings>
|
||||
{
|
||||
public override string Name => "FileList.ro";
|
||||
public override string Name => "FileList.io";
|
||||
public override DownloadProtocol Protocol => DownloadProtocol.Torrent;
|
||||
public override bool SupportsRss => true;
|
||||
public override bool SupportsSearch => true;
|
||||
|
|
|
|||
|
|
@ -25,7 +25,7 @@ public class FileListSettings : ITorrentIndexerSettings
|
|||
|
||||
public FileListSettings()
|
||||
{
|
||||
BaseUrl = "https://filelist.ro";
|
||||
BaseUrl = "https://filelist.io";
|
||||
MinimumSeeders = IndexerDefaults.MINIMUM_SEEDERS;
|
||||
|
||||
Categories = new int[] { (int)FileListCategories.Movie_HD, (int)FileListCategories.Movie_SD, (int)FileListCategories.Movie_4K };
|
||||
|
|
|
|||
Loading…
Reference in a new issue