0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-02-10 00:58:26 -05:00

🐛 Fix incorrect env vars parsing on config module.

This commit is contained in:
Andrey Antukh 2020-11-11 14:17:59 +01:00
parent b22b77a39e
commit 1db1bd03f5

View file

@ -170,7 +170,7 @@
(fn [acc k v]
(cond-> acc
(str/starts-with? (name k) "penpot-")
(assoc (keyword (subs (name k) 6)) v)
(assoc (keyword (subs (name k) 7)) v)
(str/starts-with? (name k) "app-")
(assoc (keyword (subs (name k) 4)) v)))