Add missing semicolon

This commit is contained in:
Aya Morisawa 2019-01-28 17:49:20 +09:00
parent 5b866edac3
commit 4327498d46

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]);