Merge pull request #16617 from peppy/realm-block-button-sanity

Don't auto-unblock realm when user has manually pressed unblock button
This commit is contained in:
Dan Balasescu
2022-01-26 14:27:37 +09:00
committed by GitHub

View File

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