Skip to content

Commit

Permalink
fix moderator lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
igrigorik committed Jul 30, 2023
1 parent 55073d5 commit 926c46a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/views/main/about.erb
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@
<h3>Moderators</h3>
<ul>
<% ADMINS.each do |user| %>
<li><%= profile_link(user) %></li>
<%- if u = User.find_by_nickname(user) %>
<li><%= profile_link(u) %></li>
<%- end %>
<% end %>
</ul>

Expand Down

0 comments on commit 926c46a

Please sign in to comment.