diff options
author | Chocobozzz <me@florianbigard.com> | 2018-05-24 15:30:28 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-05-24 15:30:28 +0200 |
commit | d14a9532a1363b464d6d15fce86afc4983a8357e (patch) | |
tree | 21f7c65eaa6bf5527637f093f79a4a61b46f40b7 /client/src/app/+accounts | |
parent | b528582df28f20ec7481d3c73d16b4291fe9c7e7 (diff) | |
download | PeerTube-d14a9532a1363b464d6d15fce86afc4983a8357e.tar.gz PeerTube-d14a9532a1363b464d6d15fce86afc4983a8357e.tar.zst PeerTube-d14a9532a1363b464d6d15fce86afc4983a8357e.zip |
Handle account name in client url
More consistent with AP urls
Diffstat (limited to 'client/src/app/+accounts')
-rw-r--r-- | client/src/app/+accounts/accounts.component.ts | 2 |
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 1298803c3..0a52985da 100644 --- a/client/src/app/+accounts/accounts.component.ts +++ b/client/src/app/+accounts/accounts.component.ts | |||
@@ -16,7 +16,7 @@ export class AccountsComponent implements OnInit { | |||
16 | ) {} | 16 | ) {} |
17 | 17 | ||
18 | ngOnInit () { | 18 | ngOnInit () { |
19 | const accountId = parseInt(this.route.snapshot.params['accountId'], 10) | 19 | const accountId = this.route.snapshot.params['accountId'] |
20 | 20 | ||
21 | this.accountService.getAccount(accountId) | 21 | this.accountService.getAccount(accountId) |
22 | .subscribe(account => this.account = account) | 22 | .subscribe(account => this.account = account) |