« get me outta code hell

client: js: go home Boolean - hsmusic-wiki - HSMusic - static wiki software cataloguing collaborative creation
about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
author(quasar) nebula <qznebula@protonmail.com>2026-03-31 09:20:24 -0300
committer(quasar) nebula <qznebula@protonmail.com>2026-03-31 09:20:24 -0300
commit11d67d826e48be0fb6c1f5422ee4bd02ca3f0983 (patch)
tree1ba541e4c81d3b9a372bdbe6841e5c9cb29242fd /src
parentef6899009050d9036651162c17a8e7572552c558 (diff)
client: js: go home Boolean
Diffstat (limited to 'src')
-rw-r--r--src/static/js/client/index.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/client/index.js b/src/static/js/client/index.js
index 16ebe89f..cd617bea 100644
--- a/src/static/js/client/index.js
+++ b/src/static/js/client/index.js
@@ -133,7 +133,7 @@ for (const module of modules) {
             break;
 
           case 'boolean':
-            formatRead = Boolean;
+            formatRead = value => value === 'true' ? true : false;
             formatWrite = String;
             break;