Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
lostfilm: add *.run sitelink resolves #9154
  • Loading branch information
garfield69 committed Jul 13, 2020
1 parent 7152c18 commit cefa006
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Jackett.Common/Indexers/LostFilm.cs
Expand Up @@ -22,6 +22,11 @@ namespace Jackett.Common.Indexers
[ExcludeFromCodeCoverage]
internal class LostFilm : BaseWebIndexer
{
public override string[] AlternativeSiteLinks { get; protected set; } = {
"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);
private static readonly Regex parseReleaseDetailsRegex = new Regex("Видео:\\ (?<quality>.+).\\ Размер:\\ (?<size>.+).\\ Перевод", RegexOptions.Compiled | RegexOptions.IgnoreCase);

Expand Down

0 comments on commit cefa006

Please sign in to comment.