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
Ronan 2017-10-13 08:14:40 +02:00 committed by Bigard Florian
parent f47bf2e142
commit 334ddfa471
1 changed files with 3 additions and 3 deletions

View File

@ -52,13 +52,13 @@ export class VideoService {
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)
.catch(this.restExtractor.handleError)
}
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)
.catch(this.restExtractor.handleError)
@ -116,7 +116,7 @@ export class VideoService {
}
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)
.catch(res => this.restExtractor.handleError(res))