fleetmap-reports 2.0.149 → 2.0.151
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/speeding-report.js +1 -3
package/package.json
CHANGED
package/src/speeding-report.js
CHANGED
|
@@ -314,13 +314,11 @@ async function getRoadSpeedLimits (devices, routes, threshold, minimumMinutes =
|
|
|
314
314
|
const config = {
|
|
315
315
|
Chile: getOSMSpeedingEvents,
|
|
316
316
|
CL: getOSMSpeedingEvents,
|
|
317
|
-
Morocco: getOSMSpeedingEvents,
|
|
318
|
-
MA: getOSMSpeedingEvents,
|
|
319
317
|
Brazil: getOSMSpeedingEvents,
|
|
320
318
|
BR: getOSMSpeedingEvents
|
|
321
319
|
}
|
|
322
320
|
const method = config[country] || getHereEvents
|
|
323
|
-
return method(devices, routes, threshold, minimumMinutes, country
|
|
321
|
+
return method(devices, routes, threshold, minimumMinutes, country)
|
|
324
322
|
}
|
|
325
323
|
|
|
326
324
|
exports.getRoadSpeedLimits = getRoadSpeedLimits
|