Minor fix in handling conflict message in drag-and-drop uploading.

This commit is contained in:
Bart Kamphorst
2019-08-29 11:56:34 +02:00
parent 0a9b9ff709
commit 1a27f04577
@@ -260,7 +260,7 @@
}
window.ace_editor.insert(text);
},
error: function(r, textStatus, errorThrown) {
error: function(data, textStatus, errorThrown) {
if (data.status == 409) {
alert('This file already exists.');
} else {