Skip to content

Commit

Permalink
Merge pull request #32 from davidmarcoes/master
Browse files Browse the repository at this point in the history
fix(i18n-msg.hmtl): bypass response code 0
  • Loading branch information
ebidel committed Feb 16, 2016
2 parents 82591e6 + a00c428 commit d20f157
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion i18n-msg.html
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit d20f157

Please sign in to comment.