We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21a0f0c commit 944bc83Copy full SHA for 944bc83
packages/powersync-op-sqlite/src/db/OPSqliteAdapter.ts
@@ -275,8 +275,8 @@ export class OPSQLiteDBAdapter extends BaseObserver<DBAdapterListener> implement
275
async refreshSchema(): Promise<void> {
276
await this.writeConnection?.refreshSchema();
277
278
- for (let connection of this.readConnections) {
279
- await connection.refreshSchema();
+ for (let readConnection of this.readConnections) {
+ await readConnection.connection.refreshSchema();
280
}
281
282
0 commit comments