From a92e1363728fdadd33fd1dacd423527e6860ae19 Mon Sep 17 00:00:00 2001 From: Christian Vidal Wolf Date: Fri, 10 Apr 2026 11:51:41 +0200 Subject: [PATCH] fix: update Dropbox file path to correct location Co-Authored-By: Claude Sonnet 4.6 --- api/dropbox-proxy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/api/dropbox-proxy.js b/api/dropbox-proxy.js index cf95bce..b3e383b 100644 --- a/api/dropbox-proxy.js +++ b/api/dropbox-proxy.js @@ -37,7 +37,7 @@ export default async function handler(req, res) { 'Authorization': `Bearer ${accessToken}`, 'Content-Type': 'application/json' }, - body: JSON.stringify({ path: '/Data-Matrix.xlsx' }) + body: JSON.stringify({ path: '/CRAZE GmbH/Sales Reports/Data Matrix.xlsx' }) }); const data = await fileInfo.json(); return res.json({ rev: data.rev, size: data.size, server_modified: data.server_modified }); @@ -51,7 +51,7 @@ export default async function handler(req, res) { method: 'POST', headers: { 'Authorization': `Bearer ${accessToken}`, - 'Dropbox-API-Arg': JSON.stringify({ path: '/Data-Matrix.xlsx' }) + 'Dropbox-API-Arg': JSON.stringify({ path: '/CRAZE GmbH/Sales Reports/Data Matrix.xlsx' }) } });