Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
viglia committed Nov 14, 2024
1 parent 61997cd commit ea2d244
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions internal/profile/android.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ type (
DeobfuscationStatus string `json:"deobfuscation_status,omitempty"`
// for react-native apps where we have js frames turned into android methods
JsSymbolicated *bool `json:"symbolicated,omitempty"`
OrigiInApp *int8 `json:"orig_in_app,omitempty"`
OrigInApp *int8 `json:"orig_in_app,omitempty"`
}
)

Expand Down Expand Up @@ -375,7 +375,7 @@ func (p *Android) NormalizeMethods(pi profileInterface) {

for j := range method.InlineFrames {
inlineMethod := method.InlineFrames[j]
if inlineMethod.Data.OrigiInApp != nil {
if inlineMethod.Data.OrigInApp != nil {
continue
}

Expand All @@ -387,7 +387,7 @@ func (p *Android) NormalizeMethods(pi profileInterface) {
// If a stack trace rule was applied to a given
// frame this should have the precedence over the
// appIdentifier.
if method.Data.OrigiInApp != nil {
if method.Data.OrigInApp != nil {
continue
}

Expand Down

0 comments on commit ea2d244

Please sign in to comment.