- tweak: more right think

This commit is contained in:
2025-02-01 13:13:49 +03:00
parent 9eff84ddf8
commit 77956d35f3
3 changed files with 56 additions and 34 deletions

View File

@@ -18,7 +18,7 @@ public partial class ServerListViewModel
public ObservableCollection<ServerEntryModelView> FavoriteServers { get; } = new();
private async void UpdateFavoriteEntries()
private void UpdateFavoriteEntries()
{
FavoriteServers.Clear();
@@ -30,7 +30,7 @@ public partial class ServerListViewModel
foreach (var server in servers)
{
var s = await ServerViewContainer.Get(server.ToRobustUrl());
var s = ServerViewContainer.Get(server.ToRobustUrl());
s.IsFavorite = true;
FavoriteServers.Add(s);
}