logo

mastofe

My custom branche(s) on git.pleroma.social/pleroma/mastofe
commit: b342c81c17cc8cf4af2ac3b1c57f4f250e0fefc1
parent: ead14f5bf0ae43524f055320f373a6e2ce947476
Author: abcang <abcang1015@gmail.com>
Date:   Thu, 29 Jun 2017 20:04:07 +0900

rescue HTTP::ConnectionError (#3992)


Diffstat:

Mapp/services/fetch_atom_service.rb4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/app/services/fetch_atom_service.rb b/app/services/fetch_atom_service.rb @@ -20,6 +20,10 @@ class FetchAtomService < BaseService process_html(fetch(url)) rescue OpenSSL::SSL::SSLError => e Rails.logger.debug "SSL error: #{e}" + nil + rescue HTTP::ConnectionError => e + Rails.logger.debug "HTTP ConnectionError: #{e}" + nil end private