style: format config and db

This commit is contained in:
Eyejoker
2026-03-20 01:08:15 +09:00
parent bb0628e8f4
commit 2b08851c2f
2 changed files with 26 additions and 26 deletions

View File

@@ -90,9 +90,11 @@ export const TIMEZONE =
process.env.TZ || Intl.DateTimeFormat().resolvedOptions().timeZone;
const SESSION_COMMAND_ALLOWED_SENDERS = new Set(
(process.env.SESSION_COMMAND_ALLOWED_SENDERS ||
(
process.env.SESSION_COMMAND_ALLOWED_SENDERS ||
envConfig.SESSION_COMMAND_ALLOWED_SENDERS ||
'')
''
)
.split(',')
.map((value) => value.trim())
.filter(Boolean),