Skip to content

Commit

Permalink
fix: 設定が壊れる問題を修正 (#1814)
Browse files Browse the repository at this point in the history
  • Loading branch information
sabonerune authored Feb 1, 2024
1 parent 0431ef9 commit 24a1b1b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/shared/ConfigManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -188,8 +188,8 @@ export abstract class BaseConfigManager {
}

private _save() {
this.lock.acquire(lockKey, () => {
this.save({
this.lock.acquire(lockKey, async () => {
await this.save({
...configSchema.parse({
...this.config,
}),
Expand Down

0 comments on commit 24a1b1b

Please sign in to comment.