aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2019-12-06 14:01:28 +0100
committerChocobozzz <me@florianbigard.com>2019-12-06 14:01:28 +0100
commit3131c13e0208eb3a33dec1a1f0d21727c820a50d (patch)
treede6abeaf2cecac25ffe4f236f0f40cf8614cf465 /client/src/app/+accounts
parent7e049ea4673f05cbb90b37199bb93713cc0d5611 (diff)
downloadPeerTube-3131c13e0208eb3a33dec1a1f0d21727c820a50d.tar.gz
PeerTube-3131c13e0208eb3a33dec1a1f0d21727c820a50d.tar.zst
PeerTube-3131c13e0208eb3a33dec1a1f0d21727c820a50d.zip
Don't support images in account descriptions
Diffstat (limited to 'client/src/app/+accounts')
-rw-r--r--client/src/app/+accounts/account-about/account-about.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+accounts/account-about/account-about.component.ts b/client/src/app/+accounts/account-about/account-about.component.ts
index c65bad3f2..d1616490f 100644
--- a/client/src/app/+accounts/account-about/account-about.component.ts
+++ b/client/src/app/+accounts/account-about/account-about.component.ts
@@ -27,7 +27,7 @@ export class AccountAboutComponent implements OnInit, OnDestroy {
27 this.accountSub = this.accountService.accountLoaded 27 this.accountSub = this.accountService.accountLoaded
28 .subscribe(async account => { 28 .subscribe(async account => {
29 this.account = account 29 this.account = account
30 this.descriptionHTML = await this.markdownService.enhancedMarkdownToHTML(this.account.description, true) 30 this.descriptionHTML = await this.markdownService.textMarkdownToHTML(this.account.description, true)
31 }) 31 })
32 } 32 }
33 33