We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 242477e commit 9605427Copy full SHA for 9605427
www/js/files.js
@@ -551,7 +551,7 @@ function files_directSD_list_success(response_text) {
551
if (typeof response.used != 'undefined') vused = response.used;
552
if (typeof response.occupation != 'undefined') voccupation = response.occupation;
553
files_status_list.push({
554
- status: response.status,
+ status: (response.status.trim().toLowerCase() == "ok")? translate_text_item("Upload done") : translate_text_item(response.status),
555
path: response.path,
556
used: vused,
557
total: vtotal,
0 commit comments