Skip to content

Commit

Permalink
lostfilm: drop *.uno domain
Browse files Browse the repository at this point in the history
  • Loading branch information
garfield69 committed Mar 30, 2021
1 parent 7479b52 commit 02ae6ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Jackett.Common/Indexers/LostFilm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ namespace Jackett.Common.Indexers
internal class LostFilm : BaseWebIndexer
{
public override string[] LegacySiteLinks { get; protected set; } = {
"https://www.lostfilm.tv/"
"https://www.lostfilm.tv/",
"https://www.lostfilm.uno/"
};

public override string[] AlternativeSiteLinks { get; protected set; } = {
"https://www.lostfilm.run/",
"https://www.lostfilm.uno/"
"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 02ae6ca

Please sign in to comment.