From: Rens Groothuijsen Date: Sun, 6 Mar 2022 22:41:44 +0000 (+0100) Subject: Enable importing GIF emojis in CLI (#17706) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=c439e13e1231acd763b38ea6287b60edf51cadc8;p=mastodon.git Enable importing GIF emojis in CLI (#17706) --- diff --git a/lib/mastodon/emoji_cli.rb b/lib/mastodon/emoji_cli.rb index 5bee70ea5..a3e947909 100644 --- a/lib/mastodon/emoji_cli.rb +++ b/lib/mastodon/emoji_cli.rb @@ -41,7 +41,7 @@ module Mastodon Gem::Package::TarReader.new(Zlib::GzipReader.open(path)) do |tar| tar.each do |entry| - next unless entry.file? && entry.full_name.end_with?('.png') + next unless entry.file? && entry.full_name.end_with?('.png', '.gif') filename = File.basename(entry.full_name, '.*')