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:
parent
87b5500c84
commit
bcdc9a1438
1 changed files with 4 additions and 0 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in a new issue