diff options
author | Chocobozzz <florian.bigard@gmail.com> | 2016-08-23 14:48:59 +0200 |
---|---|---|
committer | Chocobozzz <florian.bigard@gmail.com> | 2016-08-23 14:48:59 +0200 |
commit | 9ab1071c8d90d112f1031cf006ed621011553e84 (patch) | |
tree | 5fa2c9442b4366686adcb5b3a135ca75e8af0cb5 /client/src/app/admin | |
parent | 6be622478a36a20ec36605c772b20009d9d270ac (diff) | |
download | PeerTube-9ab1071c8d90d112f1031cf006ed621011553e84.tar.gz PeerTube-9ab1071c8d90d112f1031cf006ed621011553e84.tar.zst PeerTube-9ab1071c8d90d112f1031cf006ed621011553e84.zip |
Do not wait the make friends process ends to send a response to the
request
Diffstat (limited to 'client/src/app/admin')
-rw-r--r-- | client/src/app/admin/friends/friend-add/friend-add.component.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/app/admin/friends/friend-add/friend-add.component.ts b/client/src/app/admin/friends/friend-add/friend-add.component.ts index 07888a781..ffc499b92 100644 --- a/client/src/app/admin/friends/friend-add/friend-add.component.ts +++ b/client/src/app/admin/friends/friend-add/friend-add.component.ts | |||
@@ -61,7 +61,8 @@ export class FriendAddComponent { | |||
61 | if (status === 409) { | 61 | if (status === 409) { |
62 | alert('Already made friends!'); | 62 | alert('Already made friends!'); |
63 | } else { | 63 | } else { |
64 | alert('Made friends!'); | 64 | alert('Make friends request sent!'); |
65 | this.router.navigate([ '/admin/friends/list' ]); | ||
65 | } | 66 | } |
66 | }, | 67 | }, |
67 | error => alert(error) | 68 | error => alert(error) |