Fixed problem that global_theme setting was not respected

This fixes issue #880
This commit is contained in:
Jan Böhmer 2025-03-27 21:47:52 +01:00
parent 1daf6f01f4
commit 059a9683db

View file

@ -38,7 +38,7 @@
{% if not app.user.theme is defined %}
{% if not app.user.theme is defined or app.user.theme is null %}
{% set theme = global_theme %}
{% else %}
{% set theme = app.user.theme %}