diff --git a/Jellyfin.Server.Implementations/Users/UserManager.cs b/Jellyfin.Server.Implementations/Users/UserManager.cs index fba8923f89..91cf9c972f 100644 --- a/Jellyfin.Server.Implementations/Users/UserManager.cs +++ b/Jellyfin.Server.Implementations/Users/UserManager.cs @@ -176,6 +176,10 @@ namespace Jellyfin.Server.Implementations.Users /// public async Task UpdateUserAsync(User user) { + ArgumentNullException.ThrowIfNull(user); + + ThrowIfInvalidUsername(user.Username); + var dbContext = await _dbProvider.CreateDbContextAsync().ConfigureAwait(false); await using (dbContext.ConfigureAwait(false)) {