Properly delete remote account's avatar/header when fetch/update (#18973)
This commit is contained in:
		@@ -105,11 +105,13 @@ class ActivityPub::ProcessAccountService < BaseService
 | 
				
			|||||||
  def set_fetchable_attributes!
 | 
					  def set_fetchable_attributes!
 | 
				
			||||||
    begin
 | 
					    begin
 | 
				
			||||||
      @account.avatar_remote_url = image_url('icon') || '' unless skip_download?
 | 
					      @account.avatar_remote_url = image_url('icon') || '' unless skip_download?
 | 
				
			||||||
 | 
					      @account.avatar = nil if @account.avatar_remote_url.blank?
 | 
				
			||||||
    rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError
 | 
					    rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError
 | 
				
			||||||
      RedownloadAvatarWorker.perform_in(rand(30..600).seconds, @account.id)
 | 
					      RedownloadAvatarWorker.perform_in(rand(30..600).seconds, @account.id)
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
    begin
 | 
					    begin
 | 
				
			||||||
      @account.header_remote_url = image_url('image') || '' unless skip_download?
 | 
					      @account.header_remote_url = image_url('image') || '' unless skip_download?
 | 
				
			||||||
 | 
					      @account.header = nil if @account.header_remote_url.blank?
 | 
				
			||||||
    rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError
 | 
					    rescue Mastodon::UnexpectedResponseError, HTTP::TimeoutError, HTTP::ConnectionError, OpenSSL::SSL::SSLError
 | 
				
			||||||
      RedownloadHeaderWorker.perform_in(rand(30..600).seconds, @account.id)
 | 
					      RedownloadHeaderWorker.perform_in(rand(30..600).seconds, @account.id)
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user