From a00c4287eede6777cee70cbdaa06fc4e4f62ae3d Mon Sep 17 00:00:00 2001 From: David Marco Date: Mon, 8 Feb 2016 12:17:48 +0100 Subject: [PATCH] fix(i18n-msg.hmtl): bypass response code 0 when file protocol or request under Cordova environment --- i18n-msg.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/i18n-msg.html b/i18n-msg.html index 82282a2..e1b4b9c 100644 --- a/i18n-msg.html +++ b/i18n-msg.html @@ -226,7 +226,7 @@ xhr.onload = function(e) { _fetching = false; - if (e.target.status !== 200) { + if (e.target.status !== 200 && e.target.status !== 0) { return; }