mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-23 01:05:19 +03:00
fixes #268 - (Multicd) Albums with discnumbers in subfolders on filesystem = Multiple album objects
This commit is contained in:
@@ -128,7 +128,12 @@ namespace MediaBrowser.Api
|
||||
|
||||
if (auth.ContainsKey("UserId"))
|
||||
{
|
||||
user = UserManager.GetUserById(new Guid(auth["UserId"]));
|
||||
var userId = auth["UserId"];
|
||||
|
||||
if (!string.IsNullOrEmpty(userId))
|
||||
{
|
||||
user = UserManager.GetUserById(new Guid(userId));
|
||||
}
|
||||
}
|
||||
|
||||
var deviceId = auth["DeviceId"];
|
||||
|
||||
Reference in New Issue
Block a user