From a9bfc6f8373b55ea52eb804a11da2f732a9fba98 Mon Sep 17 00:00:00 2001
From: clauspeterhuebner
Date: Thu, 27 Mar 2025 23:54:45 +0100
Subject: [PATCH] correct isGMS and isHumHub
---
frontend/src/pages/Settings.vue | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/frontend/src/pages/Settings.vue b/frontend/src/pages/Settings.vue
index 465ff1270..08fd140f4 100644
--- a/frontend/src/pages/Settings.vue
+++ b/frontend/src/pages/Settings.vue
@@ -239,11 +239,11 @@ const isHumhubActivated = computed(() => {
})
const isGMS = computed(() => {
- return CONFIG.GMS_ACTIVE === 'true'
+ return CONFIG.GMS_ACTIVE === true
})
const isHumhub = computed(() => {
- return CONFIG.HUMHUB_ACTIVE === 'true'
+ return CONFIG.HUMHUB_ACTIVE === true
})
const isCommunityService = computed(() => {