This commit is contained in:
syuilo 2018-03-16 06:02:18 +09:00
parent 539f769919
commit 95f2f08f39

View File

@ -474,7 +474,7 @@ export default class MiOS extends EventEmitter {
}).then(async (res) => {
if (--pending === 0) spinner.parentNode.removeChild(spinner);
const body = await res.json();
const body = res.status === 204 ? null : await res.json();
if (this.debug) {
req.status = res.status;