From 1fdf8edb77008133e80e5ab8e846b7f8fdfecf12 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Fri, 10 Jul 2020 10:51:07 +0200 Subject: [PATCH] Fix lint --- server/lib/client-html.ts | 4 ++-- 1 file 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 { return htmlStringPage.replace('[manifestContentHash]', FILES_CONTENT_HASH.MANIFEST) } - private static addFaviconContentHash(htmlStringPage: string) { + private static addFaviconContentHash (htmlStringPage: string) { return htmlStringPage.replace('[faviconContentHash]', FILES_CONTENT_HASH.FAVICON) } - private static addLogoContentHash(htmlStringPage: string) { + private static addLogoContentHash (htmlStringPage: string) { return htmlStringPage.replace('[logoContentHash]', FILES_CONTENT_HASH.LOGO) }