From 238a382dba4dfb323b6c53ca3669511ee5a8c06a Mon Sep 17 00:00:00 2001 From: David Brochart Date: Tue, 20 Feb 2024 21:45:06 +0100 Subject: [PATCH] Set IFetchOptions.hash to false --- packages/docprovider/src/ydrive.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/docprovider/src/ydrive.ts b/packages/docprovider/src/ydrive.ts index 79cf2a98..107829cb 100644 --- a/packages/docprovider/src/ydrive.ts +++ b/packages/docprovider/src/ydrive.ts @@ -114,7 +114,7 @@ export class YDrive extends Drive implements ICollaborativeDrive { if (provider) { // Save is done from the backend - return this.get(localPath, { ...options, content: false }); + return this.get(localPath, { ...options, content: false, hash: false }); } }