# frozen_string_literal: true
module Onebox
module Engine
class AnimatedImageOnebox
include Engine
include StandardEmbed
matches_regexp(/^https?:\/\/.*(giphy\.com|gph\.is|tenor\.com)\//)
always_https
def to_html
og = get_opengraph
if og.image
""
else
escaped_url = ::Onebox::Helpers.normalize_url_for_output(@url)
""
end
end
end
end
end