From 0e45e336f62a411b3c423be46d16252355c754d7 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 14 Nov 2022 10:47:39 +0100 Subject: Fix HTML in account/channel description --- client/src/app/shared/shared-instance/instance.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/src/app/shared/shared-instance') diff --git a/client/src/app/shared/shared-instance/instance.service.ts b/client/src/app/shared/shared-instance/instance.service.ts index 0241f56ef..89f47db24 100644 --- a/client/src/app/shared/shared-instance/instance.service.ts +++ b/client/src/app/shared/shared-instance/instance.service.ts @@ -51,7 +51,7 @@ export class InstanceService { } for (const key of Object.keys(html)) { - html[key] = await this.markdownService.textMarkdownToHTML(about.instance[key]) + html[key] = await this.markdownService.textMarkdownToHTML({ markdown: about.instance[key] }) } return html -- cgit v1.2.3