Skip to content

Commit

Permalink
fix: case where symbol set is not available (#26388)
Browse files Browse the repository at this point in the history
  • Loading branch information
daibhin authored Nov 25, 2024
1 parent 6909050 commit 4c78538
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion posthog/api/error_tracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class ObjectStorageUnavailable(Exception):


class ErrorTrackingStackFrameSerializer(serializers.ModelSerializer):
symbol_set_ref = serializers.CharField(source="symbol_set.ref")
symbol_set_ref = serializers.CharField(source="symbol_set.ref", default=None)

class Meta:
model = ErrorTrackingStackFrame
Expand Down

0 comments on commit 4c78538

Please sign in to comment.