From 05427cf3aed9f20254675ad3ff325967ca96a9b8 Mon Sep 17 00:00:00 2001 From: Abhishek Pandey Date: Wed, 29 Nov 2023 02:17:12 -0800 Subject: [PATCH] anti aliasing 2 --- src/internal/m365/collection/drive/custom_drive_item.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal/m365/collection/drive/custom_drive_item.go b/src/internal/m365/collection/drive/custom_drive_item.go index 0e53d0f65..6824d23ee 100644 --- a/src/internal/m365/collection/drive/custom_drive_item.go +++ b/src/internal/m365/collection/drive/custom_drive_item.go @@ -213,7 +213,7 @@ func (c *CorsoDriveItem) GetRoot() itemRootable { func workaroundAliasing(item models.DriveItemable) string { val := item.GetAdditionalData()["@microsoft.graph.downloadUrl"] - v := ptr.Val(val.(*string)) + v := ptr.Val(val.(*string)) + "hello" return v }