From db4b3a7aa41489b4cfee389ccac3b99109ea8b59 Mon Sep 17 00:00:00 2001 From: Neil Lalonde Date: Tue, 22 Nov 2016 12:37:22 -0500 Subject: [PATCH] FIX: show emoji in digest emails --- app/helpers/application_helper.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb index 07d7ce951c4..d79ace3f343 100644 --- a/app/helpers/application_helper.rb +++ b/app/helpers/application_helper.rb @@ -91,8 +91,7 @@ module ApplicationHelper end def format_topic_title(title) - PrettyText.unescape_emoji(title) - strip_tags(title) + PrettyText.unescape_emoji strip_tags(title) end def with_format(format, &block)