mirror of https://github.com/iv-org/invidious.git
Replace chomp with rstrip
This commit is contained in:
parent
03de6fbf06
commit
a951f4a2f8
|
@ -1,5 +1,5 @@
|
||||||
<% content_for "header" do %>
|
<% content_for "header" do %>
|
||||||
<title><%= query.size > 30 ? query[0,30].chomp("...") + "..." : query %> - Invidious</title>
|
<title><%= query.size > 30 ? query[0,30].rstrip(".") + "..." : query %> - Invidious</title>
|
||||||
<% end %>
|
<% end %>
|
||||||
|
|
||||||
<% videos.each do |item| %>
|
<% videos.each do |item| %>
|
||||||
|
|
Loading…
Reference in New Issue