diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/lib/client-html.ts | 4 |
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 | ||