Allow ability to explicitly set APNS priority (#437)
Co-authored-by: Bo-Yi Wu <appleboy.tw@gmail.com>
This commit is contained in:
parent
cee47bdc2c
commit
dbc57cd828
|
@ -247,8 +247,12 @@ func GetIOSNotification(req PushNotification) *apns2.Notification {
|
||||||
notification.Expiration = time.Unix(*req.Expiration, 0)
|
notification.Expiration = time.Unix(*req.Expiration, 0)
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(req.Priority) > 0 && req.Priority == "normal" {
|
if len(req.Priority) > 0 {
|
||||||
notification.Priority = apns2.PriorityLow
|
if req.Priority == "normal" {
|
||||||
|
notification.Priority = apns2.PriorityLow
|
||||||
|
} else if req.Priority == "high" {
|
||||||
|
notification.Priority = apns2.PriorityHigh
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(req.PushType) > 0 {
|
if len(req.PushType) > 0 {
|
||||||
|
|
Loading…
Reference in New Issue