no verbose logging for failed downloads of gravatars

This commit is contained in:
Sam
2017-09-28 11:32:26 +10:00
parent 165b388158
commit b80320da5e
2 changed files with 8 additions and 3 deletions

View File

@@ -24,7 +24,8 @@ class UserAvatar < ActiveRecord::Base
gravatar_url,
max_file_size: SiteSetting.max_image_size_kb.kilobytes,
tmp_file_name: "gravatar",
skip_rate_limit: true
skip_rate_limit: true,
verbose: false
)
if tempfile
upload = UploadCreator.new(tempfile, 'gravatar.png', origin: gravatar_url, type: "avatar").create_for(user_id)