1
0
Fork 0
mirror of https://github.com/anyproto/anytype-heart.git synced 2025-06-10 18:10:49 +09:00

GO-3938 Merge branch 'main' into go-3938-add-include-time-relation

This commit is contained in:
kirillston 2025-04-28 11:02:03 +03:00
commit a40c6b45ca
No known key found for this signature in database
GPG key ID: BE4BF014F0ECDFE8
77 changed files with 2648 additions and 2160 deletions

View file

@ -93,15 +93,16 @@ func (b *spaceBuilder) BuildSpace(ctx context.Context, disableRemoteLoad bool) (
coreSpace.TreeSyncer().StopSync()
}
deps := clientspace.SpaceDeps{
Indexer: b.indexer,
Installer: b.installer,
CommonSpace: coreSpace,
ObjectFactory: b.objectFactory,
AccountService: b.accountService,
PersonalSpaceId: b.personalSpaceId,
StorageService: b.storageService,
SpaceCore: b.spaceCore,
LoadCtx: b.ctx,
Indexer: b.indexer,
Installer: b.installer,
CommonSpace: coreSpace,
ObjectFactory: b.objectFactory,
AccountService: b.accountService,
PersonalSpaceId: b.personalSpaceId,
StorageService: b.storageService,
SpaceCore: b.spaceCore,
LoadCtx: b.ctx,
KeyValueObserver: coreSpace.KeyValueObserver(),
}
space, err := clientspace.BuildSpace(ctx, deps)
if err != nil {