aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+accounts/accounts.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/+accounts/accounts.component.ts')
-rw-r--r--client/src/app/+accounts/accounts.component.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/+accounts/accounts.component.ts b/client/src/app/+accounts/accounts.component.ts
index 1458ea59c..e6a5a5d5e 100644
--- a/client/src/app/+accounts/accounts.component.ts
+++ b/client/src/app/+accounts/accounts.component.ts
@@ -50,7 +50,7 @@ export class AccountsComponent implements OnInit, OnDestroy {
50 switchMap(accountId => this.accountService.getAccount(accountId)), 50 switchMap(accountId => this.accountService.getAccount(accountId)),
51 tap(account => this.onAccount(account)), 51 tap(account => this.onAccount(account)),
52 switchMap(account => this.videoChannelService.listAccountVideoChannels(account)), 52 switchMap(account => this.videoChannelService.listAccountVideoChannels(account)),
53 catchError(err => this.restExtractor.redirectTo404IfNotFound(err, [ 53 catchError(err => this.restExtractor.redirectTo404IfNotFound(err, 'other', [
54 HttpStatusCode.BAD_REQUEST_400, 54 HttpStatusCode.BAD_REQUEST_400,
55 HttpStatusCode.NOT_FOUND_404 55 HttpStatusCode.NOT_FOUND_404
56 ])) 56 ]))