mirror of
https://github.com/BetterCorp/BetterFrame.git
synced 2026-05-26 16:56:33 +00:00
fix(coordinator): use config.cookieName directly, not envStr
This commit is contained in:
parent
14ee081f61
commit
76f725c149
1 changed files with 1 additions and 1 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Reference in a new issue