fix: resolve host variable on userDetail
This commit is contained in:
parent
15c43372f9
commit
2ea6e0a579
@ -107,6 +107,7 @@ namespace MisskeyAPI {
|
||||
|
||||
export const userDetail = (u: Entity.UserDetail, host: string | null = null): MegalodonEntity.Account => {
|
||||
let acct = u.username;
|
||||
host ? host = host.replace("https://", "") : undefined;
|
||||
let acctUrl = `https://${u.host || host}/@${u.username}`;
|
||||
if (u.host) {
|
||||
acct = `${u.username}@${u.host}`;
|
||||
|
Loading…
Reference in New Issue
Block a user