aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-01-20 10:52:50 +0100
committerChocobozzz <me@florianbigard.com>2022-01-20 10:52:50 +0100
commit82b9a1005cd5f5d3c338270839a24f217594b35d (patch)
treeef3dbcff6a9024823b11b68cdb58e7cefc003d5c /client/src/app
parentefd4ff5fbcd1e557c3c8af25b8b8ee5b3a2e9f0d (diff)
downloadPeerTube-82b9a1005cd5f5d3c338270839a24f217594b35d.tar.gz
PeerTube-82b9a1005cd5f5d3c338270839a24f217594b35d.tar.zst
PeerTube-82b9a1005cd5f5d3c338270839a24f217594b35d.zip
Fix abuse crash on deleted reporter account
Diffstat (limited to 'client/src/app')
-rw-r--r--client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts b/client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts
index 08cf297cc..8781c16f5 100644
--- a/client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts
+++ b/client/src/app/shared/shared-abuse-list/abuse-list-table.component.ts
@@ -171,6 +171,7 @@ export class AbuseListTableComponent extends RestTable implements OnInit {
171 171
172 isLocalAbuse (abuse: AdminAbuse) { 172 isLocalAbuse (abuse: AdminAbuse) {
173 if (this.viewType === 'user') return true 173 if (this.viewType === 'user') return true
174 if (!abuse.reporterAccount) return false
174 175
175 return Actor.IS_LOCAL(abuse.reporterAccount.host) 176 return Actor.IS_LOCAL(abuse.reporterAccount.host)
176 } 177 }