Browse Source

ActiveRecord::Relation does not respond to `#id` (#1834)

closed-social-glitch-2
alpaca-tc 7 years ago
committed by Eugen
parent
commit
f9d7ec8971
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/services/pubsubhubbub/unsubscribe_service.rb

+ 1
- 1
app/services/pubsubhubbub/unsubscribe_service.rb View File

@ -4,7 +4,7 @@ class Pubsubhubbub::UnsubscribeService < BaseService
def call(account, callback)
return ['Invalid topic URL', 422] if account.nil?
subscription = Subscription.where(account: account, callback_url: callback)
subscription = Subscription.find_by(account: account, callback_url: callback)
unless subscription.nil?
Pubsubhubbub::ConfirmationWorker.perform_async(subscription.id, 'unsubscribe')

Loading…
Cancel
Save