1
0
mirror of https://github.com/mail-in-a-box/mailinabox.git synced 2026-03-04 15:54:48 +01:00

backups: trap an error that occurs as early as getting the current backup status

This commit is contained in:
Joshua Tauberer
2016-01-02 16:25:36 -05:00
parent 5ae75e723c
commit e288d7730b
3 changed files with 22 additions and 10 deletions

View File

@@ -121,6 +121,11 @@ function show_system_backup() {
"GET",
{ },
function(r) {
if (r.error) {
show_modal_error("Backup Error", $("<pre/>").text(r.error));
return;
}
$('#backup-status tbody').html("");
var total_disk_size = 0;