mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-04-24 05:47:22 -04:00
Fixed: (DanishBytes) Double slash in search urls
This commit is contained in:
parent
998e214171
commit
b309582d91
1 changed files with 1 additions and 1 deletions
|
@ -108,7 +108,7 @@ namespace NzbDrone.Core.Indexers.Definitions
|
|||
qc.Add("tvdb", tvdbId.ToString());
|
||||
}
|
||||
|
||||
var searchUrl = string.Format("{0}/api/torrents/v2/filter?{1}", Settings.BaseUrl, qc.GetQueryString());
|
||||
var searchUrl = string.Format("{0}/api/torrents/v2/filter?{1}", Settings.BaseUrl.TrimEnd('/'), qc.GetQueryString());
|
||||
|
||||
foreach (var cat in Capabilities.Categories.MapTorznabCapsToTrackers(categories))
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue