Skip to content
Snippets Groups Projects
Commit f9d7ec89 authored by alpaca-tc's avatar alpaca-tc Committed by Eugen
Browse files

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

parent 40fd1de4
No related branches found
No related tags found
No related merge requests found
......@@ -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')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment