Fix #1781
This commit is contained in:
		
							parent
							
								
									5422697397
								
							
						
					
					
						commit
						d63044a15e
					
				|  | @ -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 New Issue