diff --git a/internal/pkg/jpush/client.go b/internal/pkg/jpush/client.go index 2e32b68..d10b885 100644 --- a/internal/pkg/jpush/client.go +++ b/internal/pkg/jpush/client.go @@ -386,11 +386,13 @@ func BuildNotification(title, body string, notificationType string, extras map[s Priority: 1, }, IOS: &IOSNotif{ - Alert: body, - Sound: "default", - Badge: "+1", - MutableContent: true, - Extras: iosExtras, + Alert: map[string]any{ + "title": title, + "body": body, + }, + Sound: "default", + Badge: "+1", + Extras: iosExtras, }, } }