UserSettings: fix exception when settings.xml doesn't exist

This commit is contained in:
emoose
2025-08-01 22:03:18 +01:00
parent a0207baafb
commit f35c4cda03

View File

@@ -22,7 +22,7 @@ namespace nspector.Common.Helper
public bool ShowScannedUnknownSettings { get; set; } = false;
public List<string> HiddenSettingGroups { get; set; }
public List<string> HiddenSettingGroups { get; set; } = new List<string>();
public bool DisableUpdateCheck { get; set; } = false;