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

Fix saving DisplayPreferences

pull/2926/head
crobibero 5 years ago
parent c31b9f5169
commit 60607ab60c

@ -84,7 +84,11 @@ namespace Jellyfin.Api.Controllers
return BadRequest(ModelState);
}
displayPreferences.Id = displayPreferencesId;
if (displayPreferencesId == null)
{
// do nothing.
}
_displayPreferencesRepository.SaveDisplayPreferences(
displayPreferences,
userId,

Loading…
Cancel
Save