summaryrefslogtreecommitdiffstats
path: root/web_src
diff options
context:
space:
mode:
authorGiteabot <teabot@gitea.io>2024-02-23 05:49:07 +0800
committerGitHub <noreply@github.com>2024-02-22 22:49:07 +0100
commit6ca8cb590d510c98610031675e0a316f95efaf61 (patch)
tree66afd1eb64723f13b429d715600afe820c364dde /web_src
parent65e28118596fe88791f0eab9431f6f343fbaedc8 (diff)
downloadgitea-6ca8cb590d510c98610031675e0a316f95efaf61.tar.gz
gitea-6ca8cb590d510c98610031675e0a316f95efaf61.zip
Don't show third-party JS errors in production builds (#29303) (#29333)
Backport #29303 by @silverwind So we don't get issues like https://github.com/go-gitea/gitea/issues/29080 and https://github.com/go-gitea/gitea/issues/29273 any more. Only active in [production builds](https://webpack.js.org/guides/production/#specify-the-mode), in non-production the errors will still show. Co-authored-by: silverwind <me@silverwind.io>
Diffstat (limited to 'web_src')
-rw-r--r--web_src/js/bootstrap.js15
1 files changed, 12 insertions, 3 deletions
diff --git a/web_src/js/bootstrap.js b/web_src/js/bootstrap.js
index f8d0c0cac0..e46c91e5e6 100644
--- a/web_src/js/bootstrap.js
+++ b/web_src/js/bootstrap.js
@@ -29,17 +29,26 @@ export function showGlobalErrorMessage(msg) {
* @param {ErrorEvent} e
*/
function processWindowErrorEvent(e) {
+ const err = e.error ?? e.reason;
+ const assetBaseUrl = String(new URL(__webpack_public_path__, window.location.origin));
+
+ // error is likely from browser extension or inline script. Do not show these in production builds.
+ if (!err.stack?.includes(assetBaseUrl) && window.config?.runModeIsProd) return;
+
+ let message;
if (e.type === 'unhandledrejection') {
- showGlobalErrorMessage(`JavaScript promise rejection: ${e.reason}. Open browser console to see more details.`);
- return;
+ message = `JavaScript promise rejection: ${err.message}.`;
+ } else {
+ message = `JavaScript error: ${e.message} (${e.filename} @ ${e.lineno}:${e.colno}).`;
}
+
if (!e.error && e.lineno === 0 && e.colno === 0 && e.filename === '' && window.navigator.userAgent.includes('FxiOS/')) {
// At the moment, Firefox (iOS) (10x) has an engine bug. See https://github.com/go-gitea/gitea/issues/20240
// If a script inserts a newly created (and content changed) element into DOM, there will be a nonsense error event reporting: Script error: line 0, col 0.
return; // ignore such nonsense error event
}
- showGlobalErrorMessage(`JavaScript error: ${e.message} (${e.filename} @ ${e.lineno}:${e.colno}). Open browser console to see more details.`);
+ showGlobalErrorMessage(`${message} Open browser console to see more details.`);
}
function initGlobalErrorHandler() {