Skip to content

Commit

Permalink
Fixed: Updated base url for TorrentsCSV
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed Feb 13, 2024
1 parent 22cbf40 commit 7d46660
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/NzbDrone.Core/Indexers/Definitions/TorrentsCSV.cs
Expand Up @@ -19,7 +19,8 @@ namespace NzbDrone.Core.Indexers.Definitions
public class TorrentsCSV : TorrentIndexerBase<NoAuthTorrentBaseSettings>
{
public override string Name => "TorrentsCSV";
public override string[] IndexerUrls => new[] { "https://torrents-csv.ml/" };
public override string[] IndexerUrls => new[] { "https://torrents-csv.com/" };
public override string[] LegacyUrls => new[] { "https://torrents-csv.ml/" };
public override string Language => "en-US";
public override string Description => "Torrents.csv is a self-hostable open source torrent search engine and database";
public override Encoding Encoding => Encoding.UTF8;
Expand Down

0 comments on commit 7d46660

Please sign in to comment.