Skip to content

Commit

Permalink
fix(HumanReadable): Fix missing humanreadable
Browse files Browse the repository at this point in the history
  • Loading branch information
Belphemur committed Aug 1, 2022
1 parent dbb68d6 commit 13e51d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/JsonDBConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class Config implements JsonDBConfig {
this.humanReadable = humanReadable
this.saveOnPush = saveOnPush
this.separator = separator
this.adapter = new JsonAdapter(new AtomicFileAdapter(this.filename, syncOnSave));
this.adapter = new JsonAdapter(new AtomicFileAdapter(this.filename, syncOnSave), humanReadable);
}
}

Expand Down

0 comments on commit 13e51d9

Please sign in to comment.