ActiveRecord::Relation does not respond to #id (#1834)
				
					
				
			This commit is contained in:
		@@ -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')
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user