diff --git a/SteamAccountManager.AvaloniaUI/ViewModels/AccountSwitcherViewModel.cs b/SteamAccountManager.AvaloniaUI/ViewModels/AccountSwitcherViewModel.cs index a2fe9d5..99c9bb4 100644 --- a/SteamAccountManager.AvaloniaUI/ViewModels/AccountSwitcherViewModel.cs +++ b/SteamAccountManager.AvaloniaUI/ViewModels/AccountSwitcherViewModel.cs @@ -97,12 +97,12 @@ InfoService infoService ReactiveCommand.Create((Account account) => ToggleBlacklistingForAccount(account)); ToggleBlacklistingModeCommand = ReactiveCommand.Create(ToggleBlacklistingMode); - RegisterSubscriptions(); + SubscribeToEventBus(); LoadVisibilityConfig(); LoadAccounts(); } - private void RegisterSubscriptions() + private void SubscribeToEventBus() { _eventBus.Subscribe(subscriberKey: GetType().Name, Events.ACCOUNTS_UPDATED, _ => LoadAccounts()