diff --git a/app/helpers/application_helper.rb b/app/helpers/application_helper.rb
index 56207c4bb5..dad7ed349a 100644
--- a/app/helpers/application_helper.rb
+++ b/app/helpers/application_helper.rb
@@ -19,7 +19,7 @@ module ApplicationHelper
auto_link(coder.encode(status.text), link: :urls, html: { rel: 'nofollow noopener' }).gsub(Account::MENTION_RE) do |m|
account = mention_hash[Account::MENTION_RE.match(m)[1]]
- return "#{m.split('@').first}@#{account.acct}"
+ "#{m.split('@').first}@#{account.acct}"
end.html_safe
end