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()
{
if (token == null)
return;
token?.Dispose();
token = null;