Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/8422ab687b996e467e6d69a170a384d7c5d69181?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update Jellyfin.Api/Controllers/UniversalAudioController.cs

Co-authored-by: Bond-009 <bond.009@outlook.com>
pull/8214/head
Niels van Velzen 3 years ago committed by GitHub
parent 8296f07a39
commit 8422ab687b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -120,7 +120,7 @@ namespace Jellyfin.Api.Controllers
var authorizationInfo = await _authorizationContext.GetAuthorizationInfo(Request).ConfigureAwait(false);
authorizationInfo.DeviceId = deviceId;
if (!userId.HasValue || userId.Equals(Guid.Empty))
if (!userId.HasValue || userId.Value.Equals(Guid.Empty))
{
userId = authorizationInfo.UserId;
}

Loading…
Cancel
Save