diff --git a/packages/lib/file-api-driver-onedrive.js b/packages/lib/file-api-driver-onedrive.js index 3395e0fdc2..8b0aa5ccc7 100644 --- a/packages/lib/file-api-driver-onedrive.js +++ b/packages/lib/file-api-driver-onedrive.js @@ -220,9 +220,8 @@ class FileApiDriverOneDrive { }; const freshStartDelta = () => { - // Business Accounts are only allowed to make delta requests to the root. For some reason /delta gives an error for personal accounts and :/delta an error for business accounts const accountProperties = this.api_.accountProperties_; - const url = (accountProperties.accountType === 'business') ? `/drives/${accountProperties.driveId}/root/delta` : `${this.makePath_(path)}:/delta`; + const url = `/drives/${accountProperties.driveId}/root/delta`; const query = this.itemFilter_(); query.select += ',deleted'; return { url: url, query: query };