mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-13 12:55:00 +00:00
fix(nbstore): fix cloud blob in ios and android (#11938)
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user