lostfilm: drop *.tv domain. resolves #9537

This commit is contained in:
Garfield69 2020-09-17 07:33:12 +12:00
parent a0fd9e8e80
commit 82c86be1e1
1 changed files with 2 additions and 3 deletions

View File

@ -22,9 +22,8 @@ namespace Jackett.Common.Indexers
[ExcludeFromCodeCoverage]
internal class LostFilm : BaseWebIndexer
{
public override string[] AlternativeSiteLinks { get; protected set; } = {
public override string[] LegacySiteLinks { get; protected set; } = new string[] {
"https://www.lostfilm.tv/",
"https://www.lostfilm.run/",
};
private static readonly Regex parsePlayEpisodeRegex = new Regex("PlayEpisode\\('(?<id>\\d{1,3})(?<season>\\d{3})(?<episode>\\d{3})'\\)", RegexOptions.Compiled | RegexOptions.IgnoreCase);
@ -98,7 +97,7 @@ namespace Jackett.Common.Indexers
: base(id: "lostfilm",
name: "LostFilm.tv",
description: "Unique portal about foreign series",
link: "https://www.lostfilm.tv/",
link: "https://www.lostfilm.run/",
caps: TorznabUtil.CreateDefaultTorznabTVCaps(),
configService: configService,
client: wc,