fix(core): adapt blob in sqlite for svg type (#4845)

This commit is contained in:
Peng Xiao
2023-11-06 18:09:48 +08:00
committed by GitHub
parent 3b74ff2b92
commit cfffcad1b8
5 changed files with 42 additions and 1 deletions
@@ -24,6 +24,7 @@ export const createCloudBlobStorage = (workspaceId: string): BlobStorage => {
// status not in the range 200-299
return null;
}
// todo: shall we add svg type here if it is missing?
return res.blob();
});
},