Explorar el Código

Merge pull request #1645 from Bond-009/fixusers

Fix UserNotFoundError
dkanada hace 5 años
padre
commit
5626709de5
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      Emby.Server.Implementations/Library/UserManager.cs

+ 1 - 0
Emby.Server.Implementations/Library/UserManager.cs

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