1
0
Fork 0

query view bugfix when receiving a conflict http

This commit is contained in:
hkernbach 2016-06-14 19:23:04 +02:00
parent 166d7edd95
commit 7e66d2a3a9
1 changed files with 6 additions and 3 deletions

View File

@ -1606,10 +1606,13 @@
}
}
catch (e) {
if (error.code !== 400) {
arangoHelper.arangoError("Query", "Successfully aborted.");
}
self.removeOutputEditor(counter);
if (error.code === 409) {
return;
}
if (error.code !== 400) {
arangoHelper.arangoNotification("Query", "Successfully aborted.");
}
}
window.progressView.hide();