Fix UserNotFoundError

This commit is contained in:
Bond_009 2019-08-18 20:12:25 +02:00
parent 4bb0c2d053
commit 24fac4b191

View File

@ -558,6 +558,7 @@ namespace Emby.Server.Implementations.Library
{
_users = new ConcurrentDictionary<Guid, User>(
users.Select(x => new KeyValuePair<Guid, User>(x.Id, x)));
return;
}
var defaultName = Environment.UserName;