diff options
| author | Shadowghost <Shadowghost@users.noreply.github.com> | 2023-03-12 19:42:18 +0100 |
|---|---|---|
| committer | Shadowghost <Ghost_of_Stone@web.de> | 2023-03-17 11:43:53 +0100 |
| commit | 82080bd1ef056153fd54e05fb9decbf5f5830572 (patch) | |
| tree | aeaa8ce8d70f1a3acadd7c6ccd709a2e6b71a9b8 /Jellyfin.Api/Controllers/UserController.cs | |
| parent | 8d158df67856bbb9de696f5caa0ec475b172ced2 (diff) | |
Apply review suggestions
Diffstat (limited to 'Jellyfin.Api/Controllers/UserController.cs')
| -rw-r--r-- | Jellyfin.Api/Controllers/UserController.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Jellyfin.Api/Controllers/UserController.cs b/Jellyfin.Api/Controllers/UserController.cs index 09bf89550..e49528867 100644 --- a/Jellyfin.Api/Controllers/UserController.cs +++ b/Jellyfin.Api/Controllers/UserController.cs @@ -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(); } |
