[mastodon-client] render bio newlines correctly
This commit is contained in:
parent
326b0ea408
commit
770e8bdf6d
|
@ -161,7 +161,7 @@ namespace MisskeyAPI {
|
||||||
followers_count: u.followersCount,
|
followers_count: u.followersCount,
|
||||||
following_count: u.followingCount,
|
following_count: u.followingCount,
|
||||||
statuses_count: u.notesCount,
|
statuses_count: u.notesCount,
|
||||||
note: u.description,
|
note: u.description?.replace(/\n|\\n/g, '<br>') ?? '',
|
||||||
url: acctUrl,
|
url: acctUrl,
|
||||||
avatar: u.avatarUrl,
|
avatar: u.avatarUrl,
|
||||||
avatar_static: u.avatarUrl,
|
avatar_static: u.avatarUrl,
|
||||||
|
|
Loading…
Reference in New Issue