Handle Mastodon::HostValidationError when pulling remoteable assets (#6782)
This will prevent, for example, `rake mastodon:redownload_avatars` from crashing when an instance is no longer responding to connection attempts, instead silently continuing as expected.
This commit is contained in:
		
							parent
							
								
									338bff8b93
								
							
						
					
					
						commit
						4a0a19fe54
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -38,7 +38,7 @@ module Remotable | ||||||
|           send("#{attachment_name}_file_name=", basename + extname) |           send("#{attachment_name}_file_name=", basename + extname) | ||||||
| 
 | 
 | ||||||
|           self[attribute_name] = url if has_attribute?(attribute_name) |           self[attribute_name] = url if has_attribute?(attribute_name) | ||||||
|         rescue HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError, Paperclip::Errors::NotIdentifiedByImageMagickError, Addressable::URI::InvalidURIError => e |         rescue HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError, Paperclip::Errors::NotIdentifiedByImageMagickError, Addressable::URI::InvalidURIError, Mastodon::HostValidationError => e | ||||||
|           Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}" |           Rails.logger.debug "Error fetching remote #{attachment_name}: #{e}" | ||||||
|           nil |           nil | ||||||
|         end |         end | ||||||
|  |  | ||||||
		Loading…
	
		Reference in a new issue