fix of b9a3b2c165
This commit is contained in:
parent
b9a3b2c165
commit
ae7d17d121
1 changed files with 1 additions and 1 deletions
|
@ -298,7 +298,7 @@ export class UserEntityService implements OnModuleInit {
|
||||||
|
|
||||||
@bindThis
|
@bindThis
|
||||||
public getIdenticonUrl(user: User): string {
|
public getIdenticonUrl(user: User): string {
|
||||||
return `${this.config.url}/identicon/${user.usernameLower}@${user.host ?? this.config.host}`;
|
return `${this.config.url}/identicon/${user.username.toLowerCase()}@${user.host ?? this.config.host}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
public async pack<ExpectsMe extends boolean | null = null, D extends boolean = false>(
|
public async pack<ExpectsMe extends boolean | null = null, D extends boolean = false>(
|
||||||
|
|
Loading…
Reference in a new issue