forked from FoundKeyGang/FoundKey
Fix #1781
This commit is contained in:
parent
5422697397
commit
d63044a15e
1 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,8 @@ import renderImage from './image';
|
|||
import renderKey from './key';
|
||||
import config from '../../../config';
|
||||
import { ILocalUser } from '../../../models/user';
|
||||
import toHtml from '../../../mfm/html';
|
||||
import parse from '../../../mfm/parse';
|
||||
|
||||
export default (user: ILocalUser) => {
|
||||
const id = `${config.url}/users/${user._id}`;
|
||||
|
@ -15,7 +17,7 @@ export default (user: ILocalUser) => {
|
|||
url: `${config.url}/@${user.username}`,
|
||||
preferredUsername: user.username,
|
||||
name: user.name,
|
||||
summary: user.description,
|
||||
summary: toHtml(parse(user.description)),
|
||||
icon: user.avatarId && renderImage(user.avatarId),
|
||||
image: user.bannerId && renderImage(user.bannerId),
|
||||
manuallyApprovesFollowers: user.isLocked,
|
||||
|
|
Loading…
Reference in a new issue