1
0
Fork 0
mirror of https://github.com/Jackett/Jackett synced 2025-01-01 04:38:20 +00:00

Newpct - Sites adjustment (#6812)

This commit is contained in:
snamds 2020-01-04 19:47:31 +01:00 committed by garfield69
parent ca8fbd081d
commit a865a697fa

View file

@ -68,6 +68,12 @@ namespace Jackett.Common.Indexers
private static Uri[] ExtraSiteLinkUris = new Uri[]
{
new Uri("https://pctnew.org"),
};
private static Uri[] LegacySiteLinkUris = new Uri[]
{
new Uri("http://descargas2020.com/"),
new Uri("http://www.tvsinpagar.com/"),
new Uri("http://torrentlocura.com/"),
new Uri("https://pctnew.site"),
@ -77,12 +83,6 @@ namespace Jackett.Common.Indexers
new Uri("http://pctnew.com/"),
};
private static Uri[] LegacySiteLinkUris = new Uri[]
{
new Uri("https://pctnew.site"),
new Uri("http://descargas2020.com/"),
};
private NewpctRelease _mostRecentRelease;
private char[] _wordSeparators = new char[] { ' ', '.', ',', ';', '(', ')', '[', ']', '-', '_' };
private int _wordNotFoundScore = 100000;