fix serverURL

This commit is contained in:
kaso17 2018-01-24 13:03:39 +01:00
parent ac9274c540
commit 69e71bbe87
1 changed files with 1 additions and 1 deletions

View File

@ -359,7 +359,7 @@ namespace Jackett.Services
if (scheme == "https" && !Request.RequestUri.Authority.Contains(":"))
port = 443;
var serverUrl = string.Format("{0}://{1}:{2}{3}", scheme, Request.RequestUri.Host, port, BasePath());
var serverUrl = string.Format("{0}://{1}:{2}{3}/", scheme, Request.RequestUri.Host, port, BasePath());
return serverUrl;
}
}