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 e2fab7f commit 8bcbcd4Copy full SHA for 8bcbcd4
packages/powersync-sdk-common/src/client/AbstractPowerSyncDatabase.ts
@@ -76,11 +76,12 @@ export abstract class AbstractPowerSyncDatabase extends BaseObserver<PowerSyncDB
76
77
constructor(protected options: PowerSyncDatabaseOptions) {
78
super();
79
- this.currentStatus = null;
+ this._isReadyPromise = null;
80
+ this.bucketStorageAdapter = this.generateBucketStorageAdapter();
81
this.closed = true;
- this.ready = false;
82
+ this.currentStatus = null;
83
this.options = { ...DEFAULT_POWERSYNC_DB_OPTIONS, ...options };
- this.bucketStorageAdapter = this.generateBucketStorageAdapter();
84
+ this.ready = false;
85
this.sdkVersion = '';
86
}
87
0 commit comments