aboutsummaryrefslogtreecommitdiffhomepage
path: root/server/lib/client-html.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-07-10 10:51:07 +0200
committerChocobozzz <me@florianbigard.com>2020-07-10 10:51:07 +0200
commit1fdf8edb77008133e80e5ab8e846b7f8fdfecf12 (patch)
tree5c1624ab92891e15ce9d25cd51f89a9c7d80a12c /server/lib/client-html.ts
parenta42a3d34a18600158fba8fc5c37e0a791a4b5311 (diff)
downloadPeerTube-1fdf8edb77008133e80e5ab8e846b7f8fdfecf12.tar.gz
PeerTube-1fdf8edb77008133e80e5ab8e846b7f8fdfecf12.tar.zst
PeerTube-1fdf8edb77008133e80e5ab8e846b7f8fdfecf12.zip
Fix lint
Diffstat (limited to 'server/lib/client-html.ts')
-rw-r--r--server/lib/client-html.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/lib/client-html.ts b/server/lib/client-html.ts
index 5996f3c70..ca76825cd 100644
--- a/server/lib/client-html.ts
+++ b/server/lib/client-html.ts
@@ -143,11 +143,11 @@ export class ClientHtml {
143 return htmlStringPage.replace('[manifestContentHash]', FILES_CONTENT_HASH.MANIFEST) 143 return htmlStringPage.replace('[manifestContentHash]', FILES_CONTENT_HASH.MANIFEST)
144 } 144 }
145 145
146 private static addFaviconContentHash(htmlStringPage: string) { 146 private static addFaviconContentHash (htmlStringPage: string) {
147 return htmlStringPage.replace('[faviconContentHash]', FILES_CONTENT_HASH.FAVICON) 147 return htmlStringPage.replace('[faviconContentHash]', FILES_CONTENT_HASH.FAVICON)
148 } 148 }
149 149
150 private static addLogoContentHash(htmlStringPage: string) { 150 private static addLogoContentHash (htmlStringPage: string) {
151 return htmlStringPage.replace('[logoContentHash]', FILES_CONTENT_HASH.LOGO) 151 return htmlStringPage.replace('[logoContentHash]', FILES_CONTENT_HASH.LOGO)
152 } 152 }
153 153