Skip to content

Commit

Permalink
fix(ignore): fix 953a2b4
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed May 13, 2024
1 parent 953a2b4 commit b2ed451
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/controller/database.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class Database {

private constructor(entries: {[id: number]: DatabaseEntry}, path: string) {
this.entries = entries;
this.nextID = Object.keys(entries).length;
this.nextID = Object.keys(entries).length + 1;
this.path = path;
}

Expand Down

0 comments on commit b2ed451

Please sign in to comment.