mirror of
https://github.com/ppy/osu.git
synced 2026-05-31 02:30:06 +08:00
Fix the MOTHERLOAD of undetected issues that are now visible thanks to net6.0
This commit is contained in:
@@ -32,7 +32,7 @@ namespace osu.Game.Online.Notifications.WebSocket
|
||||
req.Failure += ex => tcs.SetException(ex);
|
||||
api.Queue(req);
|
||||
|
||||
string endpoint = await tcs.Task;
|
||||
string endpoint = await tcs.Task.ConfigureAwait(false);
|
||||
|
||||
ClientWebSocket socket = new ClientWebSocket();
|
||||
socket.Options.SetRequestHeader(@"Authorization", @$"Bearer {api.AccessToken}");
|
||||
|
||||
Reference in New Issue
Block a user