aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/admin/friends/friend-list
diff options
context:
space:
mode:
authorChocobozzz <florian.bigard@gmail.com>2016-09-26 22:54:34 +0200
committerChocobozzz <florian.bigard@gmail.com>2016-09-26 22:54:34 +0200
commitda4971c11f16b541804b5071d543166cd3954a98 (patch)
treeacfe746bb065839ba3e42c2ada47fb6ff9b895f1 /client/src/app/admin/friends/friend-list
parent00d6b0dda4b1964ab11127851c0fc7106cc0f912 (diff)
downloadPeerTube-da4971c11f16b541804b5071d543166cd3954a98.tar.gz
PeerTube-da4971c11f16b541804b5071d543166cd3954a98.tar.zst
PeerTube-da4971c11f16b541804b5071d543166cd3954a98.zip
Client: fix error alert
Diffstat (limited to 'client/src/app/admin/friends/friend-list')
-rw-r--r--client/src/app/admin/friends/friend-list/friend-list.component.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/client/src/app/admin/friends/friend-list/friend-list.component.ts b/client/src/app/admin/friends/friend-list/friend-list.component.ts
index afbb48c1c..88c4800ee 100644
--- a/client/src/app/admin/friends/friend-list/friend-list.component.ts
+++ b/client/src/app/admin/friends/friend-list/friend-list.component.ts
@@ -24,7 +24,7 @@ export class FriendListComponent implements OnInit {
24 alert('Quit friends!'); 24 alert('Quit friends!');
25 this.getFriends(); 25 this.getFriends();
26 }, 26 },
27 error => alert(error) 27 error => alert(error.text)
28 ); 28 );
29 } 29 }
30 30
@@ -32,7 +32,7 @@ export class FriendListComponent implements OnInit {
32 this.friendService.getFriends().subscribe( 32 this.friendService.getFriends().subscribe(
33 friends => this.friends = friends, 33 friends => this.friends = friends,
34 34
35 err => alert(err) 35 err => alert(err.text)
36 ); 36 );
37 } 37 }
38} 38}