From a622b0d87141f91903f934f7bcdef5d6a1570de1 Mon Sep 17 00:00:00 2001 From: Tom Bloor Date: Thu, 28 Sep 2017 12:47:09 +0100 Subject: [PATCH] Fix issue with supplier location api url --- src/app/providers/api-service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/providers/api-service.ts b/src/app/providers/api-service.ts index 37919e3..378035b 100644 --- a/src/app/providers/api-service.ts +++ b/src/app/providers/api-service.ts @@ -268,7 +268,7 @@ export class ApiService { public getMapData(data) { data.session_key = this.sessionKey; return this.http.post( - this.apiUrl + '/v1/suppliers/location', + this.apiUrl + '/v1/supplier/location', data ).map( response => response.json() ); }