🐛 Prevent duplicate device token be registered

This commit is contained in:
LittleSheep 2025-03-19 21:29:14 +08:00
parent 73683d66e8
commit 82fa877cad

View File

@ -25,6 +25,9 @@ func AddNotifySubscriber(user models.Account, provider, id, tk, ua string) (mode
if err := database.C.Where(&models.NotificationSubscriber{
DeviceID: id,
AccountID: user.ID,
}).Or(&models.NotificationSubscriber{
DeviceToken: tk,
AccountID: user.ID,
}).First(&prev).Error; err != nil {
subscriber = models.NotificationSubscriber{
UserAgent: ua,