ignore empty script errors, line 0 gives us nothing.

This commit is contained in:
Sam 2015-08-18 17:05:55 +10:00
parent ffe06fbcb5
commit 45adeacd45

View File

@ -20,6 +20,9 @@ if Rails.env.production?
#
/(?m).*?Line: (?:\D|0).*?Column: (?:\D|0)/,
# also empty JS errors
/^Script error\..*Line: 0/m,
# CSRF errors are not providing enough data
# suppress unconditionally for now
/^Can't verify CSRF token authenticity$/,