1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2024-12-27 02:09:24 +00:00

LostFilm: add *.uno as an alternative sitelink (#11157)

This commit is contained in:
Alex Morozov 2021-02-23 05:38:00 +00:00 committed by GitHub
parent 87b5500c84
commit bcdc9a1438
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -26,6 +26,10 @@ namespace Jackett.Common.Indexers
"https://www.lostfilm.tv/"
};
public override string[] AlternativeSiteLinks { get; protected set; } = {
"https://www.lostfilm.run/",
"https://www.lostfilm.uno/"
};
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);