|
|
@ -223,8 +223,8 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
|
|
|
emoji ||= CustomEmoji.new(domain: @account.domain, shortcode: shortcode, uri: uri)
|
|
|
|
emoji ||= CustomEmoji.new(domain: @account.domain, shortcode: shortcode, uri: uri)
|
|
|
|
emoji.image_remote_url = image_url
|
|
|
|
emoji.image_remote_url = image_url
|
|
|
|
emoji.save
|
|
|
|
emoji.save
|
|
|
|
rescue Seahorse::Client::NetworkingError
|
|
|
|
rescue Seahorse::Client::NetworkingError => e
|
|
|
|
nil
|
|
|
|
Rails.logger.warn "Error storing emoji: #{e}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
def process_attachments
|
|
|
|
def process_attachments
|
|
|
@ -247,8 +247,8 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
|
|
|
|
media_attachment.save
|
|
|
|
media_attachment.save
|
|
|
|
rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError
|
|
|
|
rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError
|
|
|
|
RedownloadMediaWorker.perform_in(rand(30..600).seconds, media_attachment.id)
|
|
|
|
RedownloadMediaWorker.perform_in(rand(30..600).seconds, media_attachment.id)
|
|
|
|
rescue Seahorse::Client::NetworkingError
|
|
|
|
rescue Seahorse::Client::NetworkingError => e
|
|
|
|
nil
|
|
|
|
Rails.logger.warn "Error storing media attachment: #{e}"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|