Skip to content

Commit

Permalink
fix bug that was filtering things out of sentry
Browse files Browse the repository at this point in the history
  • Loading branch information
dansahagian committed Jan 4, 2025
1 parent 9f2d449 commit 4f8eadb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fbsurvivor/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def filter_transactions(event, hint):
return None

path = urlparse(url).path
base_url = path.split("/")[0]
base_url = path.split("/")[1]

if path == "/" or base_url in BASE_URLS:
return event
Expand Down

0 comments on commit 4f8eadb

Please sign in to comment.