diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-28 18:14:49 +0100 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2016-11-28 18:14:49 +0100 |
commit | 7e5e33df48e507e18a226edc8dfecbf554d38647 (patch) | |
tree | d75954f9013350f2d25b19b5ead385acc1bc29ea /app | |
parent | 79e41fbd519d119376bc091a460aef7ed5fa1742 (diff) |
Fix Pubsubhubbub::UnsubscribeService
Diffstat (limited to 'app')
-rw-r--r-- | app/services/pubsubhubbub/unsubscribe_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/pubsubhubbub/unsubscribe_service.rb b/app/services/pubsubhubbub/unsubscribe_service.rb index a2fdc548a..62459a0aa 100644 --- a/app/services/pubsubhubbub/unsubscribe_service.rb +++ b/app/services/pubsubhubbub/unsubscribe_service.rb @@ -1,6 +1,6 @@ # frozen_string_literal: true -class Pubsubhubbub::SubscribeService < BaseService +class Pubsubhubbub::UnsubscribeService < BaseService def call(account, callback) return ['Invalid topic URL', 422] if account.nil? |