fix(templating): process the user templates even if no standard templates are enabled

This commit is contained in:
Lemmy
2026-03-08 12:16:57 -04:00
parent b7e69d5579
commit efb9cadd17
+1 -1
View File
@@ -193,7 +193,7 @@ Singleton {
Logger.i("ColorScheme", "Applying color scheme:", getBasename(path));
// Generate templates for predefined color schemes
if (hasEnabledTemplates()) {
if (hasEnabledTemplates() || Settings.data.templates.enableUserTheming) {
AppThemeService.generateFromPredefinedScheme(data);
}
} catch (e) {