From 4bbe83eec7d012a7b4562fc48935ed73da86da66 Mon Sep 17 00:00:00 2001 From: Gianmaria Del Monte Date: Thu, 2 Nov 2023 12:11:47 +0100 Subject: [PATCH] test --- internal/http/services/owncloud/ocgraph/drives.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/http/services/owncloud/ocgraph/drives.go b/internal/http/services/owncloud/ocgraph/drives.go index 4c30db8cbae..f0ac74c83a3 100644 --- a/internal/http/services/owncloud/ocgraph/drives.go +++ b/internal/http/services/owncloud/ocgraph/drives.go @@ -114,11 +114,11 @@ func generateCs3Filters(request *godata.GoDataRequest) ([]*providerpb.ListStorag func (s *svc) cs3StorageSpaceToDrive(user *userpb.User, space *providerpb.StorageSpace) *libregraph.Drive { drive := &libregraph.Drive{ DriveAlias: libregraph.PtrString(space.RootInfo.Path), - Id: libregraph.PtrString(space.Id.OpaqueId), + Id: libregraph.PtrString("75403711-20d1-414f-aa17-df2fbb06833d$fad2ae4a-30ef-486d-95ab-d320e49f1722"), Name: space.Name, DriveType: libregraph.PtrString(space.SpaceType), Root: &libregraph.DriveItem{ - Id: libregraph.PtrString(space.Id.OpaqueId), + Id: libregraph.PtrString("75403711-20d1-414f-aa17-df2fbb06833d$fad2ae4a-30ef-486d-95ab-d320e49f1722"), Permissions: cs3PermissionsToLibreGraph(user, space.RootInfo.PermissionSet), }, }