about summary refs log tree commit diff
path: root/app/helpers/text_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/text_helper.rb')
-rw-r--r--app/helpers/text_helper.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/text_helper.rb b/app/helpers/text_helper.rb
index ac49e56f0..50a7c248a 100644
--- a/app/helpers/text_helper.rb
+++ b/app/helpers/text_helper.rb
@@ -29,12 +29,12 @@ module TextHelper
   end
 
   def normalize_status(status)
-    "#{_format_tags(status)}\n#{_format_spoiler(status)}\n#{_format_status(status)}\n#{_format_desc(status)}".delete("\n\n").strip
+    "#{_format_tags(status)}\n#{_format_spoiler(status)}\n#{_format_status(status)}\n#{_format_desc(status)}".strip
   end
 
   def _format_tags(status)
     return unless status.tags.present?
-    "tags #{status.tags.pluck(:name).join("\ntags ")}"
+    "tag #{status.tags.pluck(:name).join("\ntag ")}"
   end
 
   def _format_spoiler(status)