From e69703436a8296e85c8b9db2779439edfc3b3dfd Mon Sep 17 00:00:00 2001 From: Sean Yesmunt Date: Wed, 5 Feb 2020 09:28:06 -0500 Subject: [PATCH] try blacklisting ads url --- ui/index.jsx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ui/index.jsx b/ui/index.jsx index 85ba75901..ca46d206a 100644 --- a/ui/index.jsx +++ b/ui/index.jsx @@ -48,7 +48,10 @@ import apiPublishCallViaWeb from 'lbrytv/setup/publish'; // We still add code in analytics.js to send the error to sentry manually // If it's caught by componentDidCatch in component/errorBoundary, it will not bubble up to this error reporter if (process.env.NODE_ENV === 'production') { - Sentry.init({ dsn: 'https://f93af3fa9c94470d9a0a22602cce3154@sentry.io/1877677' }); + Sentry.init({ + dsn: 'https://f93af3fa9c94470d9a0a22602cce3154@sentry.io/1877677', + blacklistUrls: ['assets.revcontent.com'], + }); } const PROXY_PATH = 'api/v1/proxy';