Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -251,18 +251,18 @@ protected void initDropzone(Element e, Element template, String previews, Elemen
code = file.xhr.status;
}

if (response.indexOf("401") >= 0) {
if (code.equals("401")) {
response = "Unauthorized. Your session may have expired. Log in and try again.";
globalResponse = response;
UnauthorizedEvent.fire(this, convertUploadFile(file), new UploadResponse(file.xhr.status, file.xhr.statusText, response));
}

if (response.indexOf("404") >= 0) {
if (code.equals("404")) {
response = "There is a problem uploading your file.";
globalResponse = response;
}

if (response.indexOf("500") >= 0) {
if (code.equals("500")) {
response = "There is a problem uploading your file.";
globalResponse = response;
}
Expand Down Expand Up @@ -749,4 +749,4 @@ public void onMaxFilesExceeded(MaxFilesExceededEvent<UploadFile> event) {
}
}, MaxFilesExceededEvent.getType());
}
}
}