mirror of
https://git.nadeko.net/Fijxu/invidious.git
synced 2026-02-14 20:46:24 +00:00
Fix XSS in title and input bar
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
<% content_for "header" do %>
|
||||
<title><%= search_query.not_nil!.size > 30 ? query.not_nil![0,30].rstrip(".") + "..." : query.not_nil! %> - Invidious</title>
|
||||
<title><%= search_query.not_nil!.size > 30 ? HTML.escape(query.not_nil![0,30].rstrip(".") + "...") : HTML.escape(query.not_nil!) %> - Invidious</title>
|
||||
<% end %>
|
||||
|
||||
<% videos.each_slice(4) do |slice| %>
|
||||
|
||||
Reference in New Issue
Block a user