Mark browser-offline exception as fatal during syncing

This commit is contained in:
Dan Stillman 2016-04-22 20:16:03 -04:00
parent 9c7663979e
commit d3fc4eb554

View file

@ -647,6 +647,9 @@ Zotero.Sync.APIClient.prototype = {
return false;
}
}
else if (e instanceof Zotero.HTTP.BrowserOfflineException) {
e.fatal = true;
}
throw e;
}
}.bind(this)));