Update On Tue Oct 8 20:36:40 CEST 2024

This commit is contained in:
github-action[bot]
2024-10-08 20:36:41 +02:00
parent fd37c3e1de
commit 5f2a772a48
190 changed files with 5068 additions and 2802 deletions
@@ -32,9 +32,9 @@ namespace ServiceLib.ViewModels
}
CoreType = SelectedSource?.coreType?.ToString();
BrowseServerCmd = ReactiveCommand.CreateFromTask(async () =>
BrowseServerCmd = ReactiveCommand.Create(() =>
{
await _updateView?.Invoke(EViewAction.BrowseServer, null);
_updateView?.Invoke(EViewAction.BrowseServer, null);
});
EditServerCmd = ReactiveCommand.Create(() =>
@@ -67,7 +67,7 @@ namespace ServiceLib.ViewModels
if (ConfigHandler.EditCustomServer(_config, SelectedSource) == 0)
{
NoticeHandler.Instance.Enqueue(ResUI.OperationSuccess);
await _updateView?.Invoke(EViewAction.CloseWindow, null);
_updateView?.Invoke(EViewAction.CloseWindow, null);
}
else
{