Skip to content

Commit

Permalink
fix(SQLite): disconnecting a sqlite connection does not truly close it,
Browse files Browse the repository at this point in the history
fixes #661
  • Loading branch information
Fabio286 committed Sep 5, 2023
1 parent c782582 commit 757a2b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/libs/clients/SQLiteClient.ts
Expand Up @@ -35,8 +35,8 @@ export class SQLiteClient extends AntaresCore {
});
}

destroy (): void {
return null;
destroy () {
this._connection.close();
}

use (): void {
Expand Down

0 comments on commit 757a2b3

Please sign in to comment.