From 1273ee7cfdb93c86c0767774d7a1791d1363bdc5 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Tue, 24 Sep 2019 21:46:22 -0500 Subject: the commit below this but like actually fix it this time --- app/services/post_status_service.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'app/services/post_status_service.rb') diff --git a/app/services/post_status_service.rb b/app/services/post_status_service.rb index a7275ea90..3975a37d8 100644 --- a/app/services/post_status_service.rb +++ b/app/services/post_status_service.rb @@ -141,7 +141,8 @@ class PostStatusService < BaseService @text.strip! @text.gsub!(/^(?:#[\w:._ยท\-]+\s*)+$/, '') @text.strip! - @text.gsub!("\uf669", "##").gsub!("\uf666", "#") + @text.gsub!("\uf669", "##") + @text.gsub!("\uf666", "#") end def preprocess_attributes! -- cgit