[mastodon-client] render bio newlines correctly

This commit is contained in:
Laura Hausmann 2023-07-08 02:37:11 +02:00
parent 9d37f01113
commit 7f7eb301a0
No known key found for this signature in database
GPG Key ID: D044E84C5BE01605

View File

@ -161,7 +161,7 @@ namespace MisskeyAPI {
followers_count: u.followersCount,
following_count: u.followingCount,
statuses_count: u.notesCount,
note: u.description,
note: u.description?.replace(/\n|\\n/g, '<br>') ?? '',
url: acctUrl,
avatar: u.avatarUrl,
avatar_static: u.avatarUrl,