analytics/lib/sentry_filter.ex

10 lines
261 B
Elixir
Raw Normal View History

defmodule Plausible.SentryFilter do
@behaviour Sentry.EventFilter
def exclude_exception?(%Sentry.CrashError{}, _source), do: true
2022-07-14 03:26:59 +03:00
def exclude_exception?(exception, source) do
Sentry.DefaultEventFilter.exclude_exception?(exception, source)
end
end