diff --git a/www/common/common-util.js b/www/common/common-util.js index bbd648f7c..7f735411e 100644 --- a/www/common/common-util.js +++ b/www/common/common-util.js @@ -101,11 +101,11 @@ define([], function () { xhr.open("GET", src, true); xhr.responseType = "arraybuffer"; xhr.onload = function () { + if (this.status !== 200) { + return CB('XHR_ERROR'); + } return void CB(void 0, new Uint8Array(xhr.response)); }; - xhr.onerror = function () { - CB('XHR_ERROR'); - }; xhr.send(null); };