Skip to content
Snippets Groups Projects
Commit 4cdfd5fb authored by HJ's avatar HJ :fire:
Browse files

post-merge fixes

parent 30c0caff
No related branches found
No related tags found
2 merge requests!1028`master` refresh with `develop`,!659MastoAPI: emoji support
Pipeline #9077 passed
......@@ -40,10 +40,10 @@ export const parseUser = (data) => {
}
// output.name = ??? missing
output.name_html = data.display_name
output.name_html = addEmojis(data.display_name, data.emojis)
// output.description = ??? missing
output.description_html = data.note
output.description_html = addEmojis(data.note, data.emojis)
// Utilize avatar_static for gif avatars?
output.profile_image_url = data.avatar
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment