From 54a95099bfc7dc3181bb35a6c03bc350e8bcfb31 Mon Sep 17 00:00:00 2001
From: qsm-odoo <qsm@odoo.com>
Date: Thu, 2 Jan 2020 11:11:19 +0000
Subject: [PATCH] [REF] web: remove custom frontend code since done by
 crashmanager

The handling of unhandledrejection in the frontend was done with
dedicated code since the crashmanager was not in the frontend. This is
the case now so that dedicated code became useless.

closes odoo/odoo#42927

Signed-off-by: fja-odoo <fja-odoo@users.noreply.github.com>
---
 addons/web/static/src/js/public/public_root.js | 13 -------------
 1 file changed, 13 deletions(-)

diff --git a/addons/web/static/src/js/public/public_root.js b/addons/web/static/src/js/public/public_root.js
index 31b39e97abb9..a567734546b3 100644
--- a/addons/web/static/src/js/public/public_root.js
+++ b/addons/web/static/src/js/public/public_root.js
@@ -19,19 +19,6 @@ function getLang() {
 var lang = utils.get_cookie('frontend_lang') || getLang(); // FIXME the cookie value should maybe be in the ctx?
 var localeDef = ajax.loadJS('/web/webclient/locale/' + lang.replace('-', '_'));
 
-// In the frontend, there is no CrashManager instance. Errors are displayed in
-// the console. However, we do want to do the same as the backend for Promise
-// unhandled rejections.
-window.addEventListener('unhandledrejection', function (ev) {
-    if (!ev.reason || !(ev.reason instanceof Error)) {
-        // the rejection is not due to an Error, so prevent the browser
-        // from displaying an 'unhandledrejection' error in the console
-        ev.stopPropagation();
-        ev.stopImmediatePropagation();
-        ev.preventDefault();
-    }
-});
-
 /**
  * Element which is designed to be unique and that will be the top-most element
  * in the widget hierarchy. So, all other widgets will be indirectly linked to
-- 
GitLab