From 34b903a12ba6136e7e89ecc8c6385e30ffd71f39 Mon Sep 17 00:00:00 2001 From: Daniel Lockyer Date: Thu, 27 Jun 2024 15:15:39 +0200 Subject: [PATCH] Added browser autoplay error to Sentry ignore list fix https://linear.app/tryghost/issue/SLO-179/notallowederror-the-request-is-not-allowed-by-the-user-agent-or-the - this adds another browser error to the Sentry ignore list, as we don't have control over it, and it doesn't affect the user --- ghost/admin/app/routes/application.js | 1 + 1 file changed, 1 insertion(+) diff --git a/ghost/admin/app/routes/application.js b/ghost/admin/app/routes/application.js index 5f7684c8f9..5eb27060f1 100644 --- a/ghost/admin/app/routes/application.js +++ b/ghost/admin/app/routes/application.js @@ -187,6 +187,7 @@ export default Route.extend(ShortcutsRoute, { ignoreErrors: [ // Browser autoplay policies (this regex covers a few) /The play() request was interrupted/, + /The request is not allowed by the user agent or the platform in the current context/, // Network errors that we don't control /Server was unreachable/,