mirror of
https://github.com/vale981/tridactyl
synced 2025-03-06 01:51:40 -05:00
Merge pull request #3537 from Rummskartoffel/auconcreatecontainer
Fix `'auconcreatecontainer'` not being respected when false
This commit is contained in:
commit
bfc40aa41e
1 changed files with 1 additions and 1 deletions
|
@ -284,7 +284,7 @@ export class AutoContain implements IAutoContain {
|
|||
} else {
|
||||
const containerExists = await Container.exists(aucons[aukeyarr[0]])
|
||||
if (!containerExists) {
|
||||
if (Config.get("auconcreatecontainer")) {
|
||||
if (Config.get("auconcreatecontainer") === "true") {
|
||||
await Container.create(aucons[aukeyarr[0]])
|
||||
} else {
|
||||
logger.error(
|
||||
|
|
Loading…
Add table
Reference in a new issue