commit: 47d1cb4e2183949e50488187a74e3ce9b3d7d3b8
parent: 071f64d317408b556c4f85e2f2abd80fe815de8b
Author: Eugen Rochko <eugen@zeonfederated.com>
Date: Sat, 19 Mar 2016 00:23:46 +0100
TIL a return from a block seems to return from the whole method rather than
the block, even though the last line of a block is an implicit return. I am
confused to say the least
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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}<a href=\"#{url_for_target(account)}\" class=\"mention\">@<span>#{account.acct}</span></a>"
+ "#{m.split('@').first}<a href=\"#{url_for_target(account)}\" class=\"mention\">@<span>#{account.acct}</span></a>"
end.html_safe
end