Fix the way STATUS_GO_ENABLE_NIMBUS is read in cljs

Signed-off-by: yenda <eric@status.im>
This commit is contained in:
Pedro Pombeiro 2020-01-22 08:13:20 +01:00 committed by yenda
parent 0aa0d144a4
commit aaa51a9a36
No known key found for this signature in database
GPG Key ID: 0095623C0069DCE6
1 changed files with 1 additions and 1 deletions

View File

@ -36,6 +36,7 @@
(def blank-preview? (enabled? (get-config :BLANK_PREVIEW "1")))
(def group-chat-enabled? (enabled? (get-config :GROUP_CHATS_ENABLED "0")))
(def tooltip-events? (enabled? (get-config :TOOLTIP_EVENTS "0")))
(def nimbus-enabled? (enabled? (get-config :STATUS_GO_ENABLE_NIMBUS "0")))
;; CONFIG VALUES
(def log-level
@ -50,4 +51,3 @@
(def pow-target (js/parseFloat (get-config :POW_TARGET "0.002")))
(def pow-time (js/parseInt (get-config :POW_TIME "1")))
(def max-installations 2)
(def nimbus-enabled? (enabled? (get-config :STATUS_GO_ENABLE_NIMBUS "0")))