mirror of
https://github.com/QingWei-Li/notea.git
synced 2024-11-29 12:53:00 +03:00
fix: Fix issue where values read from environment were always lowercase
This commit is contained in:
parent
073b4d0f26
commit
c29c047dea
@ -63,7 +63,7 @@ export function getEnvRaw(env: AllowedEnvs, required: boolean = false): string |
|
||||
}
|
||||
}
|
||||
|
||||
return String(value).toLocaleLowerCase();
|
||||
return String(value);
|
||||
}
|
||||
|
||||
export function parseBool(str: string, invalid?: boolean): boolean;
|
||||
|
Loading…
Reference in New Issue
Block a user