diff --git a/frontend/src/app/bans/history/history.component.ts b/frontend/src/app/bans/history/history.component.ts index 3ba9e0f..631671b 100644 --- a/frontend/src/app/bans/history/history.component.ts +++ b/frontend/src/app/bans/history/history.component.ts @@ -95,6 +95,9 @@ export class HistoryComponent implements OnInit, OnChanges { public getAvatarUrl(entry: string): string { let uuid = entry.replace('-', ''); + if (uuid === 'C') { + return '/public/img/random/console.png'; + } return `https://crafatar.com/avatars/${uuid}?size=25&overlay`; } }