Add missing semicolon
This commit is contained in:
parent
377a7fdf3e
commit
250933fff3
|
@ -322,7 +322,7 @@ export default async function(
|
||||||
if (type) {
|
if (type) {
|
||||||
res([type.mime, type.ext]);
|
res([type.mime, type.ext]);
|
||||||
} else if (isSvg(buffer)) {
|
} else if (isSvg(buffer)) {
|
||||||
res(['image/svg+xml', 'svg'])
|
res(['image/svg+xml', 'svg']);
|
||||||
} else {
|
} else {
|
||||||
// 種類が同定できなかったら application/octet-stream にする
|
// 種類が同定できなかったら application/octet-stream にする
|
||||||
res(['application/octet-stream', null]);
|
res(['application/octet-stream', null]);
|
||||||
|
|
Loading…
Reference in New Issue