mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-25 19:37:34 -07:00
[mastodon-client] render bio newlines correctly
This commit is contained in:
parent
9d37f01113
commit
7f7eb301a0
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue