From c82195390fb19ed1e69121271ce4b91ea870f954 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 2 Dec 2021 13:24:16 +0900 Subject: [PATCH] Update usage of `SubscribeForNotifications` --- osu.Game/Overlays/Settings/Sections/SkinSection.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/osu.Game/Overlays/Settings/Sections/SkinSection.cs b/osu.Game/Overlays/Settings/Sections/SkinSection.cs index e3230098e2..c932f4837a 100644 --- a/osu.Game/Overlays/Settings/Sections/SkinSection.cs +++ b/osu.Game/Overlays/Settings/Sections/SkinSection.cs @@ -18,7 +18,6 @@ using osu.Game.Graphics.UserInterface; using osu.Game.Localisation; using osu.Game.Skinning; using osu.Game.Skinning.Editor; -using Realms; namespace osu.Game.Overlays.Settings.Sections { @@ -85,7 +84,7 @@ namespace osu.Game.Overlays.Settings.Sections .ThenBy(s => s.Name, StringComparer.OrdinalIgnoreCase); realmSubscription = realmSkins - .SubscribeForNotifications((sender, changes, error) => + .QueryAsyncWithNotifications((sender, changes, error) => { if (changes == null) return;