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 3f8f748 commit 239bdd3Copy full SHA for 239bdd3
packages/common/src/client/sync/bucket/SqliteBucketStorage.ts
@@ -85,7 +85,7 @@ export class SqliteBucketStorage extends BaseObserver<BucketStorageListener> imp
85
86
async getBucketStates(): Promise<BucketState[]> {
87
const result = await this.db.getAll<BucketState>(
88
- 'SELECT name as bucket, cast(last_op as TEXT) as op_id FROM ps_buckets WHERE pending_delete = 0'
+ "SELECT name as bucket, cast(last_op as TEXT) as op_id FROM ps_buckets WHERE pending_delete = 0 AND name != '$local'"
89
);
90
return result;
91
}
0 commit comments