diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-03-10 02:42:15 +0000 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:21 -0500 |
commit | 3e55dcf94418a7f157e87e806b0ba3e019262662 (patch) | |
tree | 14836db9984680e9f8ad65950884a85ead71f2be /app/models | |
parent | ff02142601b18ad69ea0a33d26f5133c63d24211 (diff) |
don't strip emoji metadata
Diffstat (limited to 'app/models')
-rw-r--r-- | app/models/custom_emoji.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/custom_emoji.rb b/app/models/custom_emoji.rb index d3cc70504..1aa1b5e34 100644 --- a/app/models/custom_emoji.rb +++ b/app/models/custom_emoji.rb @@ -29,7 +29,7 @@ class CustomEmoji < ApplicationRecord has_one :local_counterpart, -> { where(domain: nil) }, class_name: 'CustomEmoji', primary_key: :shortcode, foreign_key: :shortcode - has_attached_file :image, styles: { static: { format: 'png', convert_options: '-coalesce -strip' } } + has_attached_file :image, styles: { static: { format: 'png', convert_options: '-coalesce' } } before_validation :downcase_domain |