Merge pull request 'refs #6913 routeKm' (!2156) from 6913-routeKm into dev
gitea/salix/pipeline/head This commit looks good Details

Reviewed-on: #2156
Reviewed-by: Alex Moreno <alexm@verdnatura.es>
This commit is contained in:
Carlos Satorres 2024-03-14 07:33:57 +00:00
commit e7d5d59fa6
1 changed files with 6 additions and 4 deletions

View File

@ -30,9 +30,11 @@ module.exports = Self => {
});
function validateDistance(err) {
const routeTotalKm = this.kmEnd - this.kmStart;
const routeMaxKm = 4000;
if (routeTotalKm > routeMaxKm || this.kmStart > this.kmEnd)
err();
if (this.kmEnd) {
const routeTotalKm = this.kmEnd - this.kmStart;
const routeMaxKm = 4000;
if (routeTotalKm > routeMaxKm || this.kmStart > this.kmEnd)
err();
}
}
};