diff --git a/uffd/oauth2/templates/logout.html b/uffd/oauth2/templates/logout.html index c414e6a7838289d82d66df673978f209a3b3a803..4909595c56c93c7ee37606a4b73b9e92898ef2a7 100644 --- a/uffd/oauth2/templates/logout.html +++ b/uffd/oauth2/templates/logout.html @@ -56,11 +56,7 @@ function logout_services() { }); elem.data('urls').forEach(function (url) { p = p.then(function () { - return fetch(url[1], {method: url[0], credentials: 'include'}) - .then(function (resp) { - if (!resp.ok) - throw new Error('Server error'); - }); + return fetch(url[1], {method: url[0], credentials: 'include', mode: 'no-cors'}); }); }); p = p.then(function () {