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

Update conditional to be correct

pull/1244/head
Joshua Boniface 6 years ago
parent eaa1ac8013
commit 10f33b0273

@ -379,7 +379,7 @@ namespace MediaBrowser.Api
throw new ResourceNotFoundException("User not found");
}
if (request.Pw == "")
if (!string.IsNullOrEmpty(request.Password) || string.IsNullOrEmpty(request.Pw))
{
throw new MethodNotAllowedException("Hashed-only passwords are not valid for this API.");
}

Loading…
Cancel
Save