Fix #329 - avatar errors no longer prevent remote accounts from being saved
(without avatar). Also improved search position of exact matches
This commit is contained in:
parent
2b2797d6a5
commit
58b3f4fd67
7 changed files with 46 additions and 26 deletions
18
app/services/unsubscribe_service.rb
Normal file
18
app/services/unsubscribe_service.rb
Normal file
|
@ -0,0 +1,18 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
class UnsubscribeService < BaseService
|
||||
def call(account)
|
||||
subscription = account.subscription(api_subscription_url(account.id))
|
||||
response = subscription.unsubscribe
|
||||
|
||||
unless response.successful?
|
||||
Rails.logger.debug "PuSH unsubscribe for #{account.acct} failed: #{response.message}"
|
||||
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
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue