Browse Source

Fix information markdown not rendered in user page

pull/6/head
Menci 8 years ago
parent
commit
b1546e8b47
  1. 1
      modules/user.js

1
modules/user.js

@ -91,6 +91,7 @@ app.get('/user/:id', async (req, res) => {
user.allowedEdit = await user.isAllowedEditBy(res.locals.user);
let statistics = await user.getStatistics();
await user.renderInformation();
res.render('user', {
show_user: user,

Loading…
Cancel
Save