about summary refs log tree commit diff
path: root/app/helpers/admin/trends/statuses_helper.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/helpers/admin/trends/statuses_helper.rb')
-rw-r--r--app/helpers/admin/trends/statuses_helper.rb12
1 files changed, 5 insertions, 7 deletions
diff --git a/app/helpers/admin/trends/statuses_helper.rb b/app/helpers/admin/trends/statuses_helper.rb
index 214c1e2a6..79fee44dc 100644
--- a/app/helpers/admin/trends/statuses_helper.rb
+++ b/app/helpers/admin/trends/statuses_helper.rb
@@ -2,13 +2,11 @@
 
 module Admin::Trends::StatusesHelper
   def one_line_preview(status)
-    text = begin
-      if status.local?
-        status.text.split("\n").first
-      else
-        Nokogiri::HTML(status.text).css('html > body > *').first&.text
-      end
-    end
+    text = if status.local?
+             status.text.split("\n").first
+           else
+             Nokogiri::HTML(status.text).css('html > body > *').first&.text
+           end
 
     return '' if text.blank?