Skip to content

Commit 5b04e4f

Browse files
committed
fix check for annotatedvalue in scrubber
1 parent a75d5bc commit 5b04e4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sentry_sdk/scrubber.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ def scrub_breadcrumbs(self, event):
149149
isinstance(event["breadcrumbs"], AnnotatedValue)
150150
and event["breadcrumbs"]["values"].value is not None
151151
):
152-
for value in event["breadcrumbs"]["values"].value:
152+
for value in event["breadcrumbs"].value:
153153
if "data" in value:
154154
self.scrub_dict(value["data"])
155155
else:

0 commit comments

Comments
 (0)