Fix og:image on user page (#2972)

This commit is contained in:
MeiMei 2018-10-22 02:27:45 +09:00 committed by syuilo
parent 167648f61c
commit e95845777a
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ extends ../../../../src/client/app/base
block vars block vars
- const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`; - const title = user.name ? `${user.name} (@${user.username})` : `@${user.username}`;
- const url = `${config.url}/@${(user.host ? `${user.username}@${user.host}` : user.username)}`; - const url = `${config.url}/@${(user.host ? `${user.username}@${user.host}` : user.username)}`;
- const img = user.avatarId ? `${config.drive_url}/${user.avatarId}` : null; - const img = user.avatarUrl || null;
block title block title
= `${title} | ${config.name}` = `${title} | ${config.name}`