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/shared/account | |
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/shared/account')
-rw-r--r-- | client/src/app/shared/account/account.service.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/shared/account/account.service.ts b/client/src/app/shared/account/account.service.ts index 20e52d946..6b261cf53 100644 --- a/client/src/app/shared/account/account.service.ts +++ b/client/src/app/shared/account/account.service.ts | |||
@@ -18,7 +18,7 @@ export class AccountService { | |||
18 | private restExtractor: RestExtractor | 18 | private restExtractor: RestExtractor |
19 | ) {} | 19 | ) {} |
20 | 20 | ||
21 | getAccount (id: number): Observable<Account> { | 21 | getAccount (id: number | string): Observable<Account> { |
22 | return this.authHttp.get<ServerAccount>(AccountService.BASE_ACCOUNT_URL + id) | 22 | return this.authHttp.get<ServerAccount>(AccountService.BASE_ACCOUNT_URL + id) |
23 | .pipe( | 23 | .pipe( |
24 | map(accountHash => new Account(accountHash)), | 24 | map(accountHash => new Account(accountHash)), |