Skip to content

Commit

Permalink
fix: use pointer receiver instead of value (#2595)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbrm committed Jul 16, 2024
1 parent c7749a2 commit dc4a9d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion services/skus/playstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ func (x *playStoreDevNotification) ntfType() string {
}
}

func (x playStoreDevNotification) ntfSubType() int {
func (x *playStoreDevNotification) ntfSubType() int {
switch {
case x.SubscriptionNtf != nil:
return x.SubscriptionNtf.Type
Expand Down

0 comments on commit dc4a9d3

Please sign in to comment.