refactor: more common name

This commit is contained in:
syuilo
2022-01-16 10:45:48 +09:00
parent cc6b2d578f
commit 2c36844d34
3 changed files with 8 additions and 7 deletions

View File

@ -159,7 +159,7 @@ export class UserRepository extends Repository<User> {
if (user.avatarUrl) {
return user.avatarUrl;
} else {
return `${config.url}/random-avatar/${user.id}`;
return `${config.url}/identicon/${user.id}`;
}
}