Apply review suggestions

This commit is contained in:
Shadowghost
2023-03-12 19:42:18 +01:00
committed by Shadowghost
parent 8d158df678
commit 82080bd1ef
5 changed files with 10 additions and 10 deletions

View File

@@ -158,7 +158,7 @@ public class UserController : BaseJellyfinApiController
}
await _sessionManager.RevokeUserTokens(user.Id, null).ConfigureAwait(false);
await _playlistManager.RemovePlaylists(userId).ConfigureAwait(false);
await _playlistManager.RemovePlaylistsAsync(userId).ConfigureAwait(false);
await _userManager.DeleteUserAsync(userId).ConfigureAwait(false);
return NoContent();
}