We fixed the error code for ocm space sharing

This commit is contained in:
Roman Perekhod
2024-09-27 17:50:58 +02:00
parent 89761752db
commit c6bbdaa23f
2 changed files with 7 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
Bugfix: fix the error code for ocm space sharing
We fixed the error code for ocm space sharing
https://github.com/owncloud/ocis/pull/10079
https://github.com/owncloud/ocis/issues/10051

View File

@@ -329,7 +329,7 @@ func (s DriveItemPermissionsService) SpaceRootInvite(ctx context.Context, driveI
objectID := invite.GetRecipients()[0].GetObjectId()
_, err := s.identityCache.GetAcceptedUser(ctx, objectID)
if err == nil {
return libregraph.Permission{}, errorcode.New(errorcode.NotAllowed, "federated user can not become a space member")
return libregraph.Permission{}, errorcode.New(errorcode.InvalidRequest, "federated user can not become a space member")
}
}