1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00

Merge branch 'main' into release-fixes

# Conflicts:
#	go.mod
#	go.sum
This commit is contained in:
mcrakhman 2023-08-16 16:51:22 +02:00
commit 61f26508cb
No known key found for this signature in database
GPG key ID: DED12CFEF5B8396B
67 changed files with 5661 additions and 849 deletions

View file

@ -42,7 +42,7 @@ func (o *objectManager) Init(a *app.App) (err error) {
o.spaceId = state.SpaceId
o.spaceIsClosed = state.SpaceIsClosed
settingsObject := a.MustComponent(settings.CName).(settings.Settings).SettingsObject()
acl := a.MustComponent(syncacl.CName).(*syncacl.SyncAcl)
acl := a.MustComponent(syncacl.CName).(syncacl.SyncAcl)
o.AddObject(settingsObject)
o.AddObject(acl)
return nil