Update On Fri Aug 30 20:33:09 CEST 2024

This commit is contained in:
github-action[bot]
2024-08-30 20:33:10 +02:00
parent 891d5cb988
commit ce38859597
466 changed files with 36527 additions and 9373 deletions
@@ -9,6 +9,7 @@ namespace ServiceLib.ViewModels
{
[Reactive]
public ProfileItem SelectedSource { get; set; }
[Reactive]
public string? CoreType { get; set; }
@@ -82,7 +83,7 @@ namespace ServiceLib.ViewModels
return;
}
}
SelectedSource.coreType = (ECoreType)Enum.Parse(typeof(ECoreType), CoreType);
SelectedSource.coreType = CoreType.IsNullOrEmpty() ? null : (ECoreType)Enum.Parse(typeof(ECoreType), CoreType);
if (ConfigHandler.AddServer(_config, SelectedSource) == 0)
{