bug fix IUserSettings

This commit is contained in:
Paul Schneider 2026-06-30 23:55:43 +01:00
commit 0cc82fec5d
5 changed files with 8 additions and 20 deletions

View file

@ -72,7 +72,7 @@ namespace Yavsc.Helpers
foreach (var c in a.GetTypes())
{
if (c.IsClass && !c.IsAbstract &&
c.GetInterface("ISpecializationSettings") != null)
c.GetInterface(nameof(IUserSettings)) != null)
{
Config.ProfileTypes.Add(c);
}