Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/notifications.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2016-09-22 13:08:53 +0300
committerJoas Schilling <coding@schilljs.com>2016-09-22 16:22:25 +0300
commitd023b67b82cc16cf6e1f7287fada169e9a15103d (patch)
treedb5617688440860166cff4a5bcdece063a17d96c
parent638dcf26e693adc0b5f639982d6d59bece32fa28 (diff)
Rest in peaceful silence after a 404 and a 503
-rw-r--r--js/app.js14
1 files changed, 9 insertions, 5 deletions
diff --git a/js/app.js b/js/app.js
index d91967d..b11e274 100644
--- a/js/app.js
+++ b/js/app.js
@@ -81,7 +81,7 @@
$.ajax({
url: OC.linkToOCS('apps/notifications/api/v1', 2) + 'notifications/' + id + '?format=json',
type: 'DELETE',
- success: function(data) {
+ success: function() {
self._removeNotification(id);
},
error: function() {
@@ -206,12 +206,16 @@
* @param {XMLHttpRequest} xhr
*/
_onFetchError: function(xhr) {
- if (xhr.status === 404) {
- // 404 Not Found - stop polling
- this._shutDownNotifications();
+ if (xhr.status === 503) {
+ // 503 - Maintenance mode
+ console.debug('Shutting down notifications: instance is in maintenance mode.');
+ } else if (xhr.status === 404) {
+ // 404 - App disabled
+ console.debug('Shutting down notifications: app is disabled.');
} else {
- OC.Notification.showTemporary('Failed to request notifications. Please try to refresh the page manually.');
+ console.error('Shutting down notifications: [' + xhr.status + '] ' + xhr.statusText);
}
+ this._shutDownNotifications();
},
/**