Set false to animated options for thumbnail processor (#4547)
Resolve #3199 Fix the aspect ratio of animated GIF whose background is transparent.lolsob-rspec
parent
1a8295b5ca
commit
730fa0a06b
|
@ -8,7 +8,7 @@ module AccountAvatar
|
|||
class_methods do
|
||||
def avatar_styles(file)
|
||||
styles = { original: '120x120#' }
|
||||
styles[:static] = { format: 'png' } if file.content_type == 'image/gif'
|
||||
styles[:static] = { animated: false } if file.content_type == 'image/gif'
|
||||
styles
|
||||
end
|
||||
|
||||
|
|
|
@ -8,7 +8,7 @@ module AccountHeader
|
|||
class_methods do
|
||||
def header_styles(file)
|
||||
styles = { original: '700x335#' }
|
||||
styles[:static] = { format: 'png' } if file.content_type == 'image/gif'
|
||||
styles[:static] = { animated: false } if file.content_type == 'image/gif'
|
||||
styles
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in New Issue