forked from midou/invidious
		
	Escape title name
This commit is contained in:
		| @@ -1,4 +1,4 @@ | ||||
| <audio poster="<%= thumbnail %>" title="<%= video.title%>" id="player" class="video-js" data-setup="{}" style="width:100%;" controls> | ||||
| <audio poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js" data-setup="{}" style="width:100%;" controls> | ||||
|     <% adaptive_fmts.each do |fmt| %> | ||||
|         <% if fmt["type"].starts_with?("audio") %> | ||||
|             <source src="<%= fmt["url"] %>" type='<%= fmt["type"] %>'> | ||||
|   | ||||
| @@ -1,4 +1,4 @@ | ||||
| <video poster="<%= thumbnail %>" title="<%= video.title%>" id="player" class="video-js" data-setup="{}" style="width:100%;" controls> | ||||
| <video poster="<%= thumbnail %>" title="<%= HTML.escape(video.title) %>" id="player" class="video-js" data-setup="{}" style="width:100%;" controls> | ||||
|     <% fmt_stream.each do |fmt| %> | ||||
|         <source src="<%= fmt["url"]? %>" type='<%= fmt["type"]? %>'> | ||||
|     <% end %> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user