Skip to content

Commit

Permalink
fixing add support pragma as option for iframe driver
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Oct 8, 2024
1 parent 2f09465 commit db832fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/drivers/iframe-driver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class IframeSQLiteDriver extends SqliteLikeBaseDriver {
constructor(options?: { supportPragmaList: boolean }) {
super();
if (options?.supportPragmaList) {
this.supportPragmaList = true;
this.supportPragmaList = options.supportPragmaList;
}
}

Expand Down

0 comments on commit db832fd

Please sign in to comment.