update doc to file

This commit is contained in:
Casper Lamboo 2018-02-27 15:02:23 +01:00
parent 5032018257
commit 2b84cd0b11
1 changed files with 5 additions and 1 deletions

View File

@ -34,7 +34,11 @@ export default async function docToFile(db, doc, { image = false, sketch = false
}
}
if (image) {
response.img = `${db.name}/${doc._id}/img`;
if (!(doc._attachments && doc._attachments.img && doc._attachments.img.data)) {
throw new Error(`'${doc.name}' doesn't include image attachment`);
}
response.img = URL.createObjectURL(doc._attachments.img.data);
}
return response;