Browse Source

Change usage of gsub to delete, as per Code Climate/Rubocop recommendation (#1753)

closed-social-glitch-2
Effy Elden 7 years ago
committed by Eugen
parent
commit
8321884eef
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/lib/formatter.rb

+ 1
- 1
app/lib/formatter.rb View File

@ -15,7 +15,7 @@ class Formatter
html = status.text
html = encode(html)
html = simple_format(html, {}, sanitize: false)
html = html.gsub(/\n/, '';)
html = html.delete("\n";)
html = link_urls(html)
html = link_mentions(html, status.mentions)
html = link_hashtags(html)

Loading…
Cancel
Save