FIX: manually adds frowning_face_with_open_mouth for apple (#13528)

This commit is contained in:
Joffrey JAFFEUX
2021-07-21 23:27:20 +02:00
committed by GitHub
parent 78ab3f37b8
commit 5eb6e9281a
7 changed files with 13 additions and 13 deletions

View File

@ -466,7 +466,7 @@ describe Upload do
it 'does not mark an upload whose origin matches a regular emoji as secure (sometimes emojis are downloaded in pull_hotlinked_images)' do
SiteSetting.login_required = true
falafel = Emoji.all.find { |e| e.url == '/images/emoji/twitter/falafel.png?v=9' }
falafel = Emoji.all.find { |e| e.url == "/images/emoji/twitter/falafel.png?v=#{Emoji::EMOJI_VERSION}" }
upload.update!(secure: false, origin: "http://localhost:3000#{falafel.url}")
upload.update_secure_status
expect(upload.reload.secure).to eq(false)