From 98d773bb9b1d5f14fb01795dc7e44a42fb503f5f Mon Sep 17 00:00:00 2001 From: Ralf Haferkamp Date: Mon, 22 Sep 2025 17:57:27 +0200 Subject: [PATCH] fix: adjust for CS3 api change see: https://github.com/cs3org/cs3apis/pull/247 --- services/graph/pkg/identity/cs3.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/graph/pkg/identity/cs3.go b/services/graph/pkg/identity/cs3.go index 0e8293f1f..e787a0ce5 100644 --- a/services/graph/pkg/identity/cs3.go +++ b/services/graph/pkg/identity/cs3.go @@ -111,7 +111,7 @@ func (i *CS3) GetUsers(ctx context.Context, oreq *godata.GoDataRequest) ([]*libr res, err := gatewayClient.FindUsers(ctx, &cs3user.FindUsersRequest{ // FIXME presence match is currently not implemented, an empty search currently leads to // Unwilling To Perform": Search Error: error parsing filter: (&(objectclass=posixAccount)(|(cn=*)(displayname=*)(mail=*))), error: Present filter match for cn not implemented - Filter: search, + Query: search, }) switch { case err != nil: