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

Clean UpdateDisplayPreferences endpoint

pull/2926/head
crobibero 5 years ago
parent 0017163f39
commit 1c471d5855

@ -74,14 +74,9 @@ namespace Jellyfin.Api.Controllers
[FromQuery, BindRequired] string client,
[FromBody, BindRequired] DisplayPreferences displayPreferences)
{
if (!ModelState.IsValid)
{
return BadRequest(ModelState);
}
if (displayPreferencesId == null)
{
// do nothing.
// TODO - refactor so parameter doesn't exist or is actually used.
}
_displayPreferencesRepository.SaveDisplayPreferences(

Loading…
Cancel
Save