From a865a697fad470d4cf275a0f8d9a8cc0ff1b65d1 Mon Sep 17 00:00:00 2001 From: snamds Date: Sat, 4 Jan 2020 19:47:31 +0100 Subject: [PATCH] Newpct - Sites adjustment (#6812) --- src/Jackett.Common/Indexers/Newpct.cs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Jackett.Common/Indexers/Newpct.cs b/src/Jackett.Common/Indexers/Newpct.cs index b7954157b..9f00eea32 100644 --- a/src/Jackett.Common/Indexers/Newpct.cs +++ b/src/Jackett.Common/Indexers/Newpct.cs @@ -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;