mirror of https://github.com/Chocobozzz/PeerTube
Fix some inconsistency in link (#97)
Some link could appear with double // in url. e.g : "POST /api/v1/videos//upload HTTP/1.1"pull/108/head
parent
f47bf2e142
commit
334ddfa471
|
@ -52,13 +52,13 @@ export class VideoService {
|
||||||
nsfw: video.nsfw
|
nsfw: video.nsfw
|
||||||
}
|
}
|
||||||
|
|
||||||
return this.authHttp.put(`${VideoService.BASE_VIDEO_URL}/${video.id}`, body)
|
return this.authHttp.put(VideoService.BASE_VIDEO_URL + video.id, body)
|
||||||
.map(this.restExtractor.extractDataBool)
|
.map(this.restExtractor.extractDataBool)
|
||||||
.catch(this.restExtractor.handleError)
|
.catch(this.restExtractor.handleError)
|
||||||
}
|
}
|
||||||
|
|
||||||
uploadVideo (video: FormData) {
|
uploadVideo (video: FormData) {
|
||||||
const req = new HttpRequest('POST', `${VideoService.BASE_VIDEO_URL}/upload`, video, { reportProgress: true })
|
const req = new HttpRequest('POST', VideoService.BASE_VIDEO_URL + 'upload', video, { reportProgress: true })
|
||||||
|
|
||||||
return this.authHttp.request(req)
|
return this.authHttp.request(req)
|
||||||
.catch(this.restExtractor.handleError)
|
.catch(this.restExtractor.handleError)
|
||||||
|
@ -116,7 +116,7 @@ export class VideoService {
|
||||||
}
|
}
|
||||||
|
|
||||||
getUserVideoRating (id: number): Observable<UserVideoRate> {
|
getUserVideoRating (id: number): Observable<UserVideoRate> {
|
||||||
const url = UserService.BASE_USERS_URL + '/me/videos/' + id + '/rating'
|
const url = UserService.BASE_USERS_URL + 'me/videos/' + id + '/rating'
|
||||||
|
|
||||||
return this.authHttp.get(url)
|
return this.authHttp.get(url)
|
||||||
.catch(res => this.restExtractor.handleError(res))
|
.catch(res => this.restExtractor.handleError(res))
|
||||||
|
|
Loading…
Reference in New Issue