
This is an issue we've had for a while now, although this error has recently been appearing much more frequently for us in Sentry. Clicking into the issue does not give us much more info:

Like any painful error, we are having difficulty recreating the issue on our end - going to these website URLs does not cause this issue locally for me (although, I am on Mac, not Windows). A few related questions we have:
ignoreErrors into our Sentry.init() withWe initialize Sentry in our React App with this snippet in our index.js file:
Sentry.init({
dsn: config.dsn,
integrations: [
new Integrations.BrowserTracing()
],
tracesSampleRate: 1.0
});
and we initialize in our Node App in it's index.js file:
const sentryDsn = env === 'development' ? null : config.SENTRY_DSN;
Sentry.init({ dsn: sentryDsn, tracesSampleRate: 1.0 });
I show both initializations as I am not sure if this is an error coming from our React app or our Node App, although I think it's from our React App. Also, from this article, it seems like we could ignore these errors directly from our app with the following added to Sentry.init({}):
ignoreErrors:[
"Non-Error exception captured",
"Non-Error promise rejection captured"
]
We also found this related GitHub issue, although it doesn't seem like there are any great conclusions in here as well. What is our best course of action here?
As suggested in the GitHub issue, it seems to be caused due an issue with Outlook.
This is most likely happening due to the safe links being scanned by Outlook
If you have an Office 365 subscription and your emails contain links to your site and these links use Safe Links feature then it is bound to happen
Given that most of the users are coming from Windows, I'd say it's safe ignoring.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With