From 2e77226f0c8b9e2d246ae7f24db8bc5e4029ce8f Mon Sep 17 00:00:00 2001 From: hallengreenn Date: Sun, 12 Aug 2018 08:50:43 +0200 Subject: [PATCH] Update nordicb.org - categoryList for search (#3568) I made some copy-paste errors, while building the categoryList. Because of this - the seach string for Apps & Ebooks won't be builded correctly. Fixed --- src/Jackett.Common/Indexers/Nordicbits.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Jackett.Common/Indexers/Nordicbits.cs b/src/Jackett.Common/Indexers/Nordicbits.cs index 29878b7fa..64000c831 100644 --- a/src/Jackett.Common/Indexers/Nordicbits.cs +++ b/src/Jackett.Common/Indexers/Nordicbits.cs @@ -476,12 +476,12 @@ namespace Jackett.Common.Indexers for (int i = 0; i < categoriesList.Count; i++) { // APPS - if (new[] { "28", "60", "4", "59", "1", "61" }.Any(c => categoriesList[i].Contains(categoriesList[i]))) + if (new[] { "63", "17", "12", "62", "64" }.Any(c => categoriesList[i].Contains(categoriesList[i]))) { categoriesList[i] = categoriesList[i].Replace("cat=", "cats5[]="); } // Books - if (new[] { "28", "60", "4", "59", "1", "61" }.Any(c => categoriesList[i].Contains(categoriesList[i]))) + if (new[] { "54", "9" }.Any(c => categoriesList[i].Contains(categoriesList[i]))) { categoriesList[i] = categoriesList[i].Replace("cat=", "cats6[]="); }