Do not show error window, if user has aborted the request.

This commit is contained in:
Jan Böhmer 2020-05-27 23:06:54 +02:00
parent dc1f137c97
commit 3530e788d4

View file

@ -363,7 +363,7 @@ class AjaxUI {
private onAjaxError (event, request, settings) {
'use strict';
//Ignore aborted requests.
if (request.statusText =='abort') {
if (request.statusText =='abort' || request.status == 0) {
return;
}