From 21cc4f1cdd04ca1400f743eafc535892160e8a0c Mon Sep 17 00:00:00 2001 From: Diego Heras Date: Tue, 2 Jun 2020 22:57:40 +0200 Subject: [PATCH] torrentleech: improve search query. resolves #8230 (#8842) --- src/Jackett.Common/Indexers/TorrentLeech.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Jackett.Common/Indexers/TorrentLeech.cs b/src/Jackett.Common/Indexers/TorrentLeech.cs index 5b1899afb..248bca788 100644 --- a/src/Jackett.Common/Indexers/TorrentLeech.cs +++ b/src/Jackett.Common/Indexers/TorrentLeech.cs @@ -190,7 +190,7 @@ namespace Jackett.Common.Indexers if (query.IsImdbQuery) searchUrl += "imdbID/" + query.ImdbID + "/"; else if (!string.IsNullOrWhiteSpace(searchString)) - searchUrl += "query/" + WebUtility.UrlEncode(searchString) + "/"; + searchUrl += "exact/1/query/" + WebUtility.UrlEncode(searchString) + "/"; var cats = MapTorznabCapsToTrackers(query); if (cats.Count > 0)