Add missing semicolon

This commit is contained in:
Aya Morisawa 2019-01-28 17:49:20 +09:00
parent 377a7fdf3e
commit 250933fff3
No known key found for this signature in database
GPG key ID: 3E64865D70D579F2

View file

@ -322,7 +322,7 @@ export default async function(
if (type) {
res([type.mime, type.ext]);
} else if (isSvg(buffer)) {
res(['image/svg+xml', 'svg'])
res(['image/svg+xml', 'svg']);
} else {
// 種類が同定できなかったら application/octet-stream にする
res(['application/octet-stream', null]);