From 07f97345feb93f7fc57cc8ff1a6c7a1e4b2a8f23 Mon Sep 17 00:00:00 2001 From: CWX Date: Thu, 16 Jan 2025 14:55:12 +0000 Subject: [PATCH] fix editions for launcher --- Core/Controllers/LauncherController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Core/Controllers/LauncherController.cs b/Core/Controllers/LauncherController.cs index 09cebcec..adbead2b 100644 --- a/Core/Controllers/LauncherController.cs +++ b/Core/Controllers/LauncherController.cs @@ -63,6 +63,7 @@ public class LauncherController // Get all possible profile types + filter out any that are blacklisted var profiles = typeof(ProfileTemplates).GetProperties() + .Where(p => p.CanWrite) .Select(p => p.GetJsonName()) .Where(profileName => !_coreConfig.Features.CreateNewProfileTypesBlacklist.Contains(profileName)) .ToList();