diff options
Diffstat (limited to 'server/lib/client-html.ts')
-rw-r--r-- | server/lib/client-html.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/lib/client-html.ts b/server/lib/client-html.ts index 85fdc8754..4b2968e8b 100644 --- a/server/lib/client-html.ts +++ b/server/lib/client-html.ts | |||
@@ -26,7 +26,7 @@ import { VideoChannelModel } from '../models/video/video-channel' | |||
26 | import { getActivityStreamDuration } from '../models/video/video-format-utils' | 26 | import { getActivityStreamDuration } from '../models/video/video-format-utils' |
27 | import { VideoPlaylistModel } from '../models/video/video-playlist' | 27 | import { VideoPlaylistModel } from '../models/video/video-playlist' |
28 | import { MAccountActor, MChannelActor } from '../types/models' | 28 | import { MAccountActor, MChannelActor } from '../types/models' |
29 | import { getHTMLServerConfig } from './config' | 29 | import { ServerConfigManager } from './server-config-manager' |
30 | 30 | ||
31 | type Tags = { | 31 | type Tags = { |
32 | ogType: string | 32 | ogType: string |
@@ -211,7 +211,7 @@ class ClientHtml { | |||
211 | if (!isTestInstance() && ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path] | 211 | if (!isTestInstance() && ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path] |
212 | 212 | ||
213 | const buffer = await readFile(path) | 213 | const buffer = await readFile(path) |
214 | const serverConfig = await getHTMLServerConfig() | 214 | const serverConfig = await ServerConfigManager.Instance.getHTMLServerConfig() |
215 | 215 | ||
216 | let html = buffer.toString() | 216 | let html = buffer.toString() |
217 | html = await ClientHtml.addAsyncPluginCSS(html) | 217 | html = await ClientHtml.addAsyncPluginCSS(html) |
@@ -280,7 +280,7 @@ class ClientHtml { | |||
280 | if (!isTestInstance() && ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path] | 280 | if (!isTestInstance() && ClientHtml.htmlCache[path]) return ClientHtml.htmlCache[path] |
281 | 281 | ||
282 | const buffer = await readFile(path) | 282 | const buffer = await readFile(path) |
283 | const serverConfig = await getHTMLServerConfig() | 283 | const serverConfig = await ServerConfigManager.Instance.getHTMLServerConfig() |
284 | 284 | ||
285 | let html = buffer.toString() | 285 | let html = buffer.toString() |
286 | 286 | ||