fixes #268 - (Multicd) Albums with discnumbers in subfolders on filesystem = Multiple album objects

This commit is contained in:
Luke Pulverenti
2013-05-12 10:06:08 -04:00
parent 734e53e937
commit 57d7e9fccc
6 changed files with 71 additions and 6 deletions

View File

@@ -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"];