🐛 Prevent duplicate device token be registered
This commit is contained in:
parent
73683d66e8
commit
82fa877cad
@ -25,6 +25,9 @@ func AddNotifySubscriber(user models.Account, provider, id, tk, ua string) (mode
|
|||||||
if err := database.C.Where(&models.NotificationSubscriber{
|
if err := database.C.Where(&models.NotificationSubscriber{
|
||||||
DeviceID: id,
|
DeviceID: id,
|
||||||
AccountID: user.ID,
|
AccountID: user.ID,
|
||||||
|
}).Or(&models.NotificationSubscriber{
|
||||||
|
DeviceToken: tk,
|
||||||
|
AccountID: user.ID,
|
||||||
}).First(&prev).Error; err != nil {
|
}).First(&prev).Error; err != nil {
|
||||||
subscriber = models.NotificationSubscriber{
|
subscriber = models.NotificationSubscriber{
|
||||||
UserAgent: ua,
|
UserAgent: ua,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user