1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Use global response error handling

This commit is contained in:
softworkz 2016-04-23 22:23:37 +02:00
parent 90e6a8e467
commit 80bca379ff
5 changed files with 9 additions and 38 deletions

View file

@ -43,7 +43,7 @@
reloadItems(page);
}, onApiFailure);
}, Dashboard.processErrorResponse);
});
});
}
@ -101,7 +101,7 @@
reloadItems(page);
}, onApiFailure);
}, Dashboard.processErrorResponse);
});
});
}
@ -116,7 +116,7 @@
renderResults(page, result);
Dashboard.hideLoadingMsg();
}, onApiFailure);
}, Dashboard.processErrorResponse);
}
function getStatusText(item, enhance) {
@ -273,26 +273,6 @@
}
}
function onApiFailure(e) {
Dashboard.hideLoadingMsg();
if (e.status == 0) {
Dashboard.alert({
title: 'Auto-Organize',
message: 'The operation is going to take a little longer. The view will be updated on completion.'
});
}
else {
Dashboard.alert({
title: Globalize.translate('AutoOrganizeError'),
message: Globalize.translate('ErrorOrganizingFileWithErrorCode', e.headers.get('X-Application-Error-Code'))
});
}
}
function getTabs() {
return [
{
@ -317,7 +297,7 @@
ApiClient.clearOrganizationLog().then(function () {
reloadItems(page);
}, onApiFailure);
}, Dashboard.processErrorResponse);
});
}).on('pageshow', '#libraryFileOrganizerLogPage', function () {