🐛 Fix apns MissingTopic

This commit is contained in:
LittleSheep 2024-11-26 22:28:37 +08:00
parent 6716397a6f
commit c8ea59aa2a

View File

@ -5,7 +5,6 @@ import (
"github.com/rs/zerolog/log" "github.com/rs/zerolog/log"
"github.com/sideshow/apns2" "github.com/sideshow/apns2"
payload2 "github.com/sideshow/apns2/payload" payload2 "github.com/sideshow/apns2/payload"
"github.com/spf13/viper"
) )
type AppleNotifyProvider struct { type AppleNotifyProvider struct {
@ -37,7 +36,7 @@ func (v *AppleNotifyProvider) Push(in pushkit.Notification, tk string) error {
} }
payload := &apns2.Notification{ payload := &apns2.Notification{
DeviceToken: tk, DeviceToken: tk,
Topic: viper.GetString(v.topic), Topic: v.topic,
Payload: rawData, Payload: rawData,
} }