1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-07 14:27:25 +08:00

Merge pull request #21586 from smoogipoo/fix-hub-reconnect

Fix hub clients not reconnecting after a connection error
This commit is contained in:
Dean Herbert 2022-12-09 17:56:32 +09:00 committed by GitHub
commit e42bd7b31a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -150,7 +150,7 @@ namespace osu.Game.Online
await disconnect(true);
if (ex != null)
await handleErrorAndDelay(ex, cancellationToken).ConfigureAwait(false);
await handleErrorAndDelay(ex, CancellationToken.None).ConfigureAwait(false);
else
Logger.Log($"{ClientName} disconnected", LoggingTarget.Network);