1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-28 06:42:54 +08:00

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
commit 2e622650de
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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