Corrected some code leftover from the previous version of my code

This commit is contained in:
RadoslavL 2026-09-19 09:48:26 +03:00
parent 50e3586947
commit f3d39d1fb4

View File

@ -397,7 +397,7 @@ we're going to need to do it here in order to allow for translations.
<b style="width:100%">
<% if author_list = JSON.parse(rv["author_list"]).as_a? %>
<% author_list.each_with_index do |author_item, index| %>
<a href="/channel/<%= author_item["ucid"].as_s? || "" %>"><%= author_item["username"].as_s? || "" %><% if rv["author_verified"]? == "true" %>&nbsp;<i class="icon ion ion-md-checkmark-circle"></i><% end %></a><% if index < author_list.size - 1 %>, <% end %>
<a href="/channel/<%= author_item["ucid"].as_s? || "" %>"><%= author_item["username"].as_s? || "" %><% if author_item["author_verified"]? == "true" %>&nbsp;<i class="icon ion ion-md-checkmark-circle"></i><% end %></a><% if index < author_list.size - 1 %>, <% end %>
<% end %>
<% end %>
</b>