aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--client/src/standalone/videos/embed.html2
-rw-r--r--server/lib/client-html.ts1
2 files changed, 2 insertions, 1 deletions
diff --git a/client/src/standalone/videos/embed.html b/client/src/standalone/videos/embed.html
index a44bf56a3..7d09bfb8f 100644
--- a/client/src/standalone/videos/embed.html
+++ b/client/src/standalone/videos/embed.html
@@ -1,7 +1,7 @@
1<!DOCTYPE html> 1<!DOCTYPE html>
2<html> 2<html>
3 <head> 3 <head>
4 <title>PeerTube</title> 4 <!-- title tag -->
5 5
6 <meta charset="UTF-8"> 6 <meta charset="UTF-8">
7 <meta name="viewport" content="width=device-width, initial-scale=1"> 7 <meta name="viewport" content="width=device-width, initial-scale=1">
diff --git a/server/lib/client-html.ts b/server/lib/client-html.ts
index 6a457a711..f19ec7df0 100644
--- a/server/lib/client-html.ts
+++ b/server/lib/client-html.ts
@@ -211,6 +211,7 @@ class ClientHtml {
211 let html = buffer.toString() 211 let html = buffer.toString()
212 html = await ClientHtml.addAsyncPluginCSS(html) 212 html = await ClientHtml.addAsyncPluginCSS(html)
213 html = ClientHtml.addCustomCSS(html) 213 html = ClientHtml.addCustomCSS(html)
214 html = ClientHtml.addTitleTag(html)
214 215
215 ClientHtml.htmlCache[path] = html 216 ClientHtml.htmlCache[path] = html
216 217