aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/client-html.ts
diff options
context:
space:
mode:
authorkontrollanten <6680299+kontrollanten@users.noreply.github.com>2020-12-08 15:28:14 +0100
committerChocobozzz <chocobozzz@cpy.re>2020-12-14 15:25:51 +0100
commit915e2bbb97a85b53b4d7b7e2f2d9a416c891a0fb (patch)
tree1771f6ab3339153aa507b51eb471e8cde24535b1 /server/lib/client-html.ts
parentecc69f6b9b1a214677a8028d86d6895a44ede74d (diff)
downloadPeerTube-915e2bbb97a85b53b4d7b7e2f2d9a416c891a0fb.tar.gz
PeerTube-915e2bbb97a85b53b4d7b7e2f2d9a416c891a0fb.tar.zst
PeerTube-915e2bbb97a85b53b4d7b7e2f2d9a416c891a0fb.zip
video embed: use instance name as html title
Diffstat (limited to 'server/lib/client-html.ts')
-rw-r--r--server/lib/client-html.ts1
1 files changed, 1 insertions, 0 deletions
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