mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-17 22:37:04 +08:00
fix(core): do not pass flavor in space id (#11285)
This commit is contained in:
@@ -43,17 +43,17 @@ export class UserDBEngine extends Entity<{
|
|||||||
doc: {
|
doc: {
|
||||||
name: this.DocStorageType.identifier,
|
name: this.DocStorageType.identifier,
|
||||||
opts: {
|
opts: {
|
||||||
id: `${serverService.server.id}:` + this.userId,
|
|
||||||
flavour: serverService.server.id,
|
|
||||||
type: 'userspace',
|
type: 'userspace',
|
||||||
|
flavour: serverService.server.id,
|
||||||
|
id: this.userId,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
docSync: {
|
docSync: {
|
||||||
name: this.DocSyncStorageType.identifier,
|
name: this.DocSyncStorageType.identifier,
|
||||||
opts: {
|
opts: {
|
||||||
id: `${serverService.server.id}:` + this.userId,
|
|
||||||
type: 'userspace',
|
type: 'userspace',
|
||||||
flavour: serverService.server.id,
|
flavour: serverService.server.id,
|
||||||
|
id: this.userId,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user