QoL: log version at startup, show backend vs frontend mismatch in system status (#10214)

This commit is contained in:
shamoon 2025-06-19 08:29:34 -07:00 committed by GitHub
parent 83391af866
commit 52b95f2b62
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 85 additions and 5 deletions

View file

@ -2184,6 +2184,8 @@ class UiSettingsView(GenericAPIView):
general_config = GeneralConfig()
ui_settings["version"] = version.__full_version_str__
ui_settings["app_title"] = settings.APP_TITLE
if general_config.app_title is not None and len(general_config.app_title) > 0:
ui_settings["app_title"] = general_config.app_title