We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d37946e commit 23be1dfCopy full SHA for 23be1df
src/index.js
@@ -147,7 +147,7 @@ const handleRequest = async (req, res) => {
147
await listVersions(req, res);
148
} else if (pathname.startsWith('/v1/static/') && req.method === 'GET') {
149
// GCS proxy endpoint for reports files
150
- const filePath = pathname.replace('/v1/static/', '');
+ const filePath = decodeURIComponent(pathname.replace('/v1/static/', ''));
151
if (!filePath) {
152
res.statusCode = 400;
153
res.end(JSON.stringify({ error: 'File path required' }));
0 commit comments