diff options
-rw-r--r-- | app/lib/formatter.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/app/lib/formatter.rb b/app/lib/formatter.rb index 12b141e7e..ad0f022a7 100644 --- a/app/lib/formatter.rb +++ b/app/lib/formatter.rb @@ -37,8 +37,7 @@ class Formatter acct = Account::MENTION_RE.match(match)[1] mention = mentions.find { |mention| mention.account.acct.eql?(acct) } - return match if mention.nil? - mention_html(match, mention.account) + mention.nil? ? match : mention_html(match, mention.account) end end |