Skip to content
Snippets Groups Projects
Commit 97b3d0fe authored by Bertrand PINEL's avatar Bertrand PINEL
Browse files

Take into account Colin and Nicolas remark from Blog post

parent d87b237d
No related branches found
No related tags found
No related merge requests found
...@@ -41,11 +41,11 @@ export default class MapboxWsService extends Service { ...@@ -41,11 +41,11 @@ export default class MapboxWsService extends Service {
"Access-Control-Allow-Origin": "*" "Access-Control-Allow-Origin": "*"
} }
}); });
if (response.status === 200 && response.data.code === 'Ok') { if (response.status !== 200 && response.data.code !== 'Ok') {
return { coords: response.data.routes[0].geometry.coordinates, dist: response.data.routes[0].distance }; return { coords: [], dist: 0};
} else { }
return { coords: [], dist: 0}; return { coords: response.data.routes[0].geometry.coordinates, dist: response.data.routes[0].distance };
}
} }
async optimize(profile, coord1, coord2) { async optimize(profile, coord1, coord2) {
...@@ -61,11 +61,10 @@ export default class MapboxWsService extends Service { ...@@ -61,11 +61,10 @@ export default class MapboxWsService extends Service {
"Access-Control-Allow-Origin": "*" "Access-Control-Allow-Origin": "*"
} }
}); });
if (response.status === 200 && response.data.code === 'Ok') { if (response.status !== 200 || response.data.code !== 'Ok') {
return response.data.trips[0].geometry.coordinates; return [];
} else {
return [];
} }
return response.data.trips[0].geometry.coordinates;
} }
headers() { headers() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment