Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
larkox committed Dec 17, 2024
1 parent 3f50444 commit 7317560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/android_notification_server.go
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ func (me *AndroidNotificationServer) SendNotificationWithRetry(fcmMsg *messaging

retryContext, cancelRetryContext := context.WithTimeout(generalContext, me.retryTimeout)
defer cancelRetryContext()
_, err := me.client.Send(retryContext, fcmMsg)
_, err = me.client.Send(retryContext, fcmMsg)
if me.metrics != nil {
me.metrics.observerNotificationResponse(PushNotifyApple, time.Since(start).Seconds())
}
Expand Down

0 comments on commit 7317560

Please sign in to comment.