summaryrefslogtreecommitdiffstats
path: root/app/services/unsubscribe_service.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/services/unsubscribe_service.rb')
-rw-r--r--app/services/unsubscribe_service.rb13
1 files changed, 8 insertions, 5 deletions
diff --git a/app/services/unsubscribe_service.rb b/app/services/unsubscribe_service.rb
index 865f783bc84..b99046712c7 100644
--- a/app/services/unsubscribe_service.rb
+++ b/app/services/unsubscribe_service.rb
@@ -4,16 +4,19 @@ class UnsubscribeService < BaseService
def call(account)
return if account.hub_url.blank?
- @account = account
- @response = build_request.perform
+ @account = account
- Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{@response.status}" unless @response.status.success?
+ begin
+ @response = build_request.perform
+
+ Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{@response.status}" unless @response.status.success?
+ rescue HTTP::Error, OpenSSL::SSL::SSLError => e
+ Rails.logger.debug "PuSH unsubscribe for #{@account.acct} failed: #{e}"
+ end
@account.secret = ''
@account.subscription_expires_at = nil
@account.save!
- rescue HTTP::Error, OpenSSL::SSL::SSLError
- Rails.logger.debug "PuSH subscription request for #{@account.acct} could not be made due to HTTP or SSL error"
end
private