fix: new lines in description not being translated

This commit is contained in:
Mar0xy 2023-09-25 13:15:09 +02:00
parent 2ea6e0a579
commit 219b45a3c0
No known key found for this signature in database
GPG key ID: 56569BBE47D2C828

View file

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