From 1984c1fc9041b0e21214ef3d6f698c2c83ca633a Mon Sep 17 00:00:00 2001 From: Amritanshu Date: Wed, 5 Sep 2018 00:09:37 +0530 Subject: [PATCH] Fix: Rebase url error, double slash before date --- overlord/src/app/settings/settings.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlord/src/app/settings/settings.service.ts b/overlord/src/app/settings/settings.service.ts index 1122ea68..441884fa 100644 --- a/overlord/src/app/settings/settings.service.ts +++ b/overlord/src/app/settings/settings.service.ts @@ -54,7 +54,7 @@ export class SettingsService { } rebaseDatabase(date: string): Observable { - const url = '/api/Rebase/'; + const url = '/api/Rebase'; return >this.http.post(`${url}/${date}`, {}) .pipe( catchError(this.log.handleError(serviceName, `rebaseDatabase`))