Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/c0b95dbc791acae1c28bf50fb3a33c06935e7192 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fix query log for real

pull/1010/head
Claus Vium 6 years ago
parent 647adc51c8
commit c0b95dbc79

@ -321,7 +321,7 @@ namespace Emby.Server.Implementations.HttpServer
string pagePathWithoutQueryString = url.Split(new[] { '?' }, StringSplitOptions.RemoveEmptyEntries)[0];
return newQueryString.Count > 0
? $"{pagePathWithoutQueryString}?{newQueryString.Select(value => value.Key + " = " + string.Join(", ", value.Value))}"
? $"{pagePathWithoutQueryString}?{string.Join("&", newQueryString.Select(value => value.Key + " = " + string.Join(", ", value.Value)))}"
: pagePathWithoutQueryString;
}

Loading…
Cancel
Save