소스 검색

Fix UserNotFoundError

Bond_009 5 년 전
부모
커밋
24fac4b191
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  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;