Skip to content

Commit

Permalink
Fix Exception.ThreadID type (#770)
Browse files Browse the repository at this point in the history
  • Loading branch information
cleptric committed Feb 7, 2024
1 parent 824589b commit 4185c9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion interfaces.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ type Exception struct {
Type string `json:"type,omitempty"` // used as the main issue title
Value string `json:"value,omitempty"` // used as the main issue subtitle
Module string `json:"module,omitempty"`
ThreadID string `json:"thread_id,omitempty"`
ThreadID uint64 `json:"thread_id,omitempty"`
Stacktrace *Stacktrace `json:"stacktrace,omitempty"`
Mechanism *Mechanism `json:"mechanism,omitempty"`
}
Expand Down

0 comments on commit 4185c9f

Please sign in to comment.