Prevent Web::Push notification delivery if notification is outside of TTL window (#32842)
parent
c78dc23b49
commit
aeae152006
|
@ -13,6 +13,8 @@ class Web::PushNotificationWorker
|
||||||
@subscription = Web::PushSubscription.find(subscription_id)
|
@subscription = Web::PushSubscription.find(subscription_id)
|
||||||
@notification = Notification.find(notification_id)
|
@notification = Notification.find(notification_id)
|
||||||
|
|
||||||
|
return if @notification.updated_at < TTL.ago
|
||||||
|
|
||||||
# Polymorphically associated activity could have been deleted
|
# Polymorphically associated activity could have been deleted
|
||||||
# in the meantime, so we have to double-check before proceeding
|
# in the meantime, so we have to double-check before proceeding
|
||||||
return unless @notification.activity.present? && @subscription.pushable?(@notification)
|
return unless @notification.activity.present? && @subscription.pushable?(@notification)
|
||||||
|
|
Loading…
Reference in New Issue