From 334ddfa47120ae53bc2643792ec5e1065a4d1141 Mon Sep 17 00:00:00 2001 From: Ronan Date: Fri, 13 Oct 2017 08:14:40 +0200 Subject: [PATCH] Fix some inconsistency in link (#97) Some link could appear with double // in url. e.g : "POST /api/v1/videos//upload HTTP/1.1" --- client/src/app/videos/shared/video.service.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/client/src/app/videos/shared/video.service.ts b/client/src/app/videos/shared/video.service.ts index fe7f9108d..fc552f2b5 100644 --- a/client/src/app/videos/shared/video.service.ts +++ b/client/src/app/videos/shared/video.service.ts @@ -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 { - 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))