tweak guid check

Co-authored-by: Bond-009 <bond.009@outlook.com>
This commit is contained in:
Jason Dove 2022-06-23 09:19:29 -05:00 committed by GitHub
parent d06fda43c1
commit fc74c8eecf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -246,7 +246,7 @@ namespace Jellyfin.Api.Controllers
{
var auth = await _authContext.GetAuthorizationInfo(Request).ConfigureAwait(false);
var user = !auth.IsApiKey && userId.HasValue && !userId.Equals(Guid.Empty)
var user = !auth.IsApiKey && userId.HasValue && !userId.Value.Equals(default)
? _userManager.GetUserById(userId.Value)
: null;