aboutsummaryrefslogtreecommitdiffstats
path: root/src/internal-server
diff options
context:
space:
mode:
authorLibravatar Vijay A <vraravam@users.noreply.github.com>2022-12-01 00:36:38 +0530
committerLibravatar Vijay A <vraravam@users.noreply.github.com>2022-12-01 00:36:38 +0530
commite33efe0e57d3e056813ea1a99d583fe304298295 (patch)
tree0ebede431ccba0dbb0def156d27cb47988a6107c /src/internal-server
parentchore: [#42] use noop consistently throughout (#808) (diff)
downloadferdium-app-e33efe0e57d3e056813ea1a99d583fe304298295.tar.gz
ferdium-app-e33efe0e57d3e056813ea1a99d583fe304298295.tar.zst
ferdium-app-e33efe0e57d3e056813ea1a99d583fe304298295.zip
Minor fix for data type consistency
Diffstat (limited to 'src/internal-server')
-rw-r--r--src/internal-server/app/Controllers/Http/ServiceController.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/internal-server/app/Controllers/Http/ServiceController.js b/src/internal-server/app/Controllers/Http/ServiceController.js
index 226adb134..940cac065 100644
--- a/src/internal-server/app/Controllers/Http/ServiceController.js
+++ b/src/internal-server/app/Controllers/Http/ServiceController.js
@@ -80,7 +80,7 @@ class ServiceController {
80 // TODO: Remove duplication 80 // TODO: Remove duplication
81 return { 81 return {
82 customRecipe: false, 82 customRecipe: false,
83 hasCustomIcon: false, 83 hasCustomIcon: DEFAULT_SERVICE_SETTINGS.hasCustomIcon,
84 isBadgeEnabled: DEFAULT_SERVICE_SETTINGS.isBadgeEnabled, 84 isBadgeEnabled: DEFAULT_SERVICE_SETTINGS.isBadgeEnabled,
85 trapLinkClicks: DEFAULT_SERVICE_SETTINGS.trapLinkClicks, 85 trapLinkClicks: DEFAULT_SERVICE_SETTINGS.trapLinkClicks,
86 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work. 86 isDarkModeEnabled: '', // TODO: This should ideally be a boolean (false). But, changing it caused the sidebar toggle to not work.