From d023b67b82cc16cf6e1f7287fada169e9a15103d Mon Sep 17 00:00:00 2001 From: Joas Schilling Date: Thu, 22 Sep 2016 12:08:53 +0200 Subject: Rest in peaceful silence after a 404 and a 503 --- js/app.js | 14 +++++++++----- 1 file 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(); }, /** -- cgit v1.2.3