aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/shared/rest
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2018-05-16 10:50:30 +0200
committerChocobozzz <me@florianbigard.com>2018-05-16 10:51:03 +0200
commit133592034881926dc2da63735fe7344bfedd9c31 (patch)
treef71ec1e261ef59dd20b92be8243cd31f7c1049c5 /client/src/app/shared/rest
parenta700f1837e8307cf5a0ada19e9be6f421961f45a (diff)
downloadPeerTube-133592034881926dc2da63735fe7344bfedd9c31.tar.gz
PeerTube-133592034881926dc2da63735fe7344bfedd9c31.tar.zst
PeerTube-133592034881926dc2da63735fe7344bfedd9c31.zip
Fix rxjs throw
Diffstat (limited to 'client/src/app/shared/rest')
-rw-r--r--client/src/app/shared/rest/rest-extractor.service.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/client/src/app/shared/rest/rest-extractor.service.ts b/client/src/app/shared/rest/rest-extractor.service.ts
index 4cfe28536..db087d407 100644
--- a/client/src/app/shared/rest/rest-extractor.service.ts
+++ b/client/src/app/shared/rest/rest-extractor.service.ts
@@ -85,8 +85,6 @@ export class RestExtractor {
85 errorObj.body = err.error 85 errorObj.body = err.error
86 } 86 }
87 87
88 observableThrowError(errorObj) 88 return observableThrowError(errorObj)
89
90 return of(undefined)
91 } 89 }
92} 90}