diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-28 17:21:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-28 17:21:28 +0200 |
commit | 4e2f2fab73d6632a2c5f8ff3d5ba26140747cd60 (patch) | |
tree | 8b38e8678958461bdaede3a6faf5777416febcfe /app/workers | |
parent | 6e186b9c77e7f23da6b46b901aace1c0b3b163ad (diff) |
Fix guard clause in WebPushNotificationWorker (#4421)
Diffstat (limited to 'app/workers')
-rw-r--r-- | app/workers/web_push_notification_worker.rb | 21 |
1 files changed, 11 insertions, 10 deletions
diff --git a/app/workers/web_push_notification_worker.rb b/app/workers/web_push_notification_worker.rb index 51b8daae7..eacea04c3 100644 --- a/app/workers/web_push_notification_worker.rb +++ b/app/workers/web_push_notification_worker.rb @@ -7,18 +7,19 @@ class WebPushNotificationWorker def perform(session_activation_id, notification_id) session_activation = SessionActivation.find(session_activation_id) - notification = Notification.find(notification_id) + notification = Notification.find(notification_id) - return if session_activation.nil? || notification.nil? + return if session_activation.web_push_subscription.nil? || notification.activity.nil? - begin - session_activation.web_push_subscription.push(notification) - rescue Webpush::InvalidSubscription, Webpush::ExpiredSubscription => e - # Subscription expiration is not currently implemented in any browser - session_activation.web_push_subscription.destroy! - session_activation.update!(web_push_subscription: nil) + session_activation.web_push_subscription.push(notification) + rescue Webpush::InvalidSubscription, Webpush::ExpiredSubscription + # Subscription expiration is not currently implemented in any browser - raise e - end + session_activation.web_push_subscription.destroy! + session_activation.update!(web_push_subscription: nil) + + true + rescue ActiveRecord::RecordNotFound + true end end |