fix(nbstore): fix cloud blob in ios and android (#11938)

This commit is contained in:
EYHN
2025-04-30 10:25:15 +08:00
committed by GitHub
parent 365a0a605b
commit a75ae38308
2 changed files with 38 additions and 3 deletions

View File

@@ -70,7 +70,12 @@ export class WorkspacesController {
// metadata should always exists if body is not null
if (metadata) {
res.setHeader('content-type', metadata.contentType);
res.setHeader(
'content-type',
metadata.contentType.startsWith('application/json') // application/json is reserved for redirect url
? 'text/json'
: metadata.contentType
);
res.setHeader('last-modified', metadata.lastModified.toUTCString());
res.setHeader('content-length', metadata.contentLength);
} else {