mirror of
https://github.com/MrUnknownDE/VRCX.git
synced 2026-04-18 22:33:50 +02:00
Added Sentry event filtering for 500 errors
This commit is contained in:
@@ -46,7 +46,8 @@ export async function initSentry(app) {
|
||||
if (error && typeof error.message === 'string') {
|
||||
if (
|
||||
error.message.includes('403') ||
|
||||
error.message.includes('404')
|
||||
error.message.includes('404') ||
|
||||
error.message.includes('500')
|
||||
) {
|
||||
return null;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user