Browse Source

Don't AddAsync

Bond_009 4 years ago
parent
commit
941f326c0b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Jellyfin.Server.Implementations/Users/UserManager.cs

+ 2 - 2
Jellyfin.Server.Implementations/Users/UserManager.cs

@@ -216,7 +216,7 @@ namespace Jellyfin.Server.Implementations.Users
 
             var newUser = await CreateUserInternalAsync(name, dbContext).ConfigureAwait(false);
 
-            await dbContext.Users.AddAsync(newUser).ConfigureAwait(false);
+            dbContext.Users.Add(newUser);
             await dbContext.SaveChangesAsync().ConfigureAwait(false);
 
             OnUserCreated?.Invoke(this, new GenericEventArgs<User>(newUser));
@@ -608,7 +608,7 @@ namespace Jellyfin.Server.Implementations.Users
             newUser.SetPermission(PermissionKind.EnableContentDeletion, true);
             newUser.SetPermission(PermissionKind.EnableRemoteControlOfOtherUsers, true);
 
-            await dbContext.Users.AddAsync(newUser).ConfigureAwait(false);
+            dbContext.Users.Add(newUser);
             await dbContext.SaveChangesAsync().ConfigureAwait(false);
         }