diff --git a/src/Lavalink4NET/Players/LavalinkPlayerHandle.cs b/src/Lavalink4NET/Players/LavalinkPlayerHandle.cs index 423f00e6..bbbf1047 100644 --- a/src/Lavalink4NET/Players/LavalinkPlayerHandle.cs +++ b/src/Lavalink4NET/Players/LavalinkPlayerHandle.cs @@ -100,7 +100,7 @@ public async ValueTask UpdateVoiceServerAsync(VoiceServer voiceServer, Cancellat if (_voiceState is not null) { - await CompleteAsync(isVoiceServerUpdated: true, cancellationToken).ConfigureAwait(false); + _ = CompleteAsync(isVoiceServerUpdated: true, cancellationToken).Preserve(); } } @@ -118,7 +118,7 @@ public async ValueTask UpdateVoiceStateAsync(VoiceState voiceState, Cancellation if (_voiceServer is not null) { - await CompleteAsync(isVoiceServerUpdated: false, cancellationToken).ConfigureAwait(false); + _ = CompleteAsync(isVoiceServerUpdated: false, cancellationToken).Preserve(); } }