Skip to content
Snippets Groups Projects
Unverified Commit ff87d1bc authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Rescue SSL errors when processing mentions, remove useless line (#7184)

parent 1957209e
Branches
Tags
1 merge request!8WIP: Backport from Mastodon FE main to support the "Direct messages" column and Lists
......@@ -17,13 +17,11 @@ class ProcessMentionsService < BaseService
if mention_undeliverable?(status, mentioned_account)
begin
mentioned_account = resolve_account_service.call($1)
rescue Goldfinger::Error, HTTP::Error
rescue Goldfinger::Error, HTTP::Error, OpenSSL::SSL::SSLError, Mastodon::UnexpectedResponseError
mentioned_account = nil
end
end
mentioned_account ||= Account.find_remote(username, domain)
next match if mention_undeliverable?(status, mentioned_account)
mentioned_account.mentions.where(status: status).first_or_create(status: status)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment