feature: server: env -> env.parse

This commit is contained in:
coderiaser 2026-01-14 13:19:41 +02:00
parent f0dcbe946f
commit 6856207d0d
4 changed files with 18 additions and 18 deletions

View file

@ -58,7 +58,7 @@ const emitAuth = wraptile((importUrl, config, socket) => {
const updateConfig = currify((config, data) => {
for (const [key, value] of entries(data)) {
if (typeof env(key) !== 'undefined')
if (typeof env.parse(key) !== 'undefined')
continue;
config(key, value);