aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/auth/auth.service.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2021-08-06 16:41:08 +0200
committerChocobozzz <me@florianbigard.com>2021-08-11 11:49:01 +0200
commit134006b0d4528c07f0022c6e75257bf9fedbfebb (patch)
tree8c977db89b10984896f7e96c92109d5b4ab345b6 /client/src/app/core/auth/auth.service.ts
parent31aa391d13f78743bb552bc8c337964afb3b5817 (diff)
downloadPeerTube-134006b0d4528c07f0022c6e75257bf9fedbfebb.tar.gz
PeerTube-134006b0d4528c07f0022c6e75257bf9fedbfebb.tar.zst
PeerTube-134006b0d4528c07f0022c6e75257bf9fedbfebb.zip
Update client dependencies
Diffstat (limited to 'client/src/app/core/auth/auth.service.ts')
-rw-r--r--client/src/app/core/auth/auth.service.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/app/core/auth/auth.service.ts b/client/src/app/core/auth/auth.service.ts
index 60bd72c60..ef5a3808e 100644
--- a/client/src/app/core/auth/auth.service.ts
+++ b/client/src/app/core/auth/auth.service.ts
@@ -206,7 +206,7 @@ Ensure you have correctly configured PeerTube (config/ directory), in particular
206 this.refreshingTokenObservable = this.http.post<UserRefreshToken>(AuthService.BASE_TOKEN_URL, body, { headers }) 206 this.refreshingTokenObservable = this.http.post<UserRefreshToken>(AuthService.BASE_TOKEN_URL, body, { headers })
207 .pipe( 207 .pipe(
208 map(res => this.handleRefreshToken(res)), 208 map(res => this.handleRefreshToken(res)),
209 tap(() => this.refreshingTokenObservable = null), 209 tap(() => { this.refreshingTokenObservable = null }),
210 catchError(err => { 210 catchError(err => {
211 this.refreshingTokenObservable = null 211 this.refreshingTokenObservable = null
212 212