1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-30 02:22:55 +08:00

Don't auto-unblock realm when user has manually pressed unblock button

This commit is contained in:
Dean Herbert 2022-01-26 12:51:09 +09:00
parent cdd63e428c
commit 7ca73f7e6d

View File

@ -73,6 +73,9 @@ namespace osu.Game.Overlays.Settings.Sections.DebugSettings
void unblock() void unblock()
{ {
if (token == null)
return;
token?.Dispose(); token?.Dispose();
token = null; token = null;