fix(coordinator): use config.cookieName directly, not envStr

This commit is contained in:
Mitchell R 2026-05-22 20:42:48 +02:00
parent 14ee081f61
commit 76f725c149
No known key found for this signature in database

View file

@ -178,7 +178,7 @@ export class Plugin extends BSBService<InstanceType<typeof Config>, typeof Event
async init(obs: Observable): Promise<void> {
const dataDir = envStr("BF_DATA_DIR", this.config.dataDir);
const noderedUrl = envStr("BF_NODERED_URL", this.config.noderedUrl);
const cookieName = envStr("BF_COOKIE_NAME", this.config.cookieName);
const cookieName = this.config.cookieName;
const totpIssuer = envStr("BF_TOTP_ISSUER", this.config.totpIssuer);
const repo = getRepo();