diff --git a/importGasStations.js b/importGasStations.js index c093492..a497935 100644 --- a/importGasStations.js +++ b/importGasStations.js @@ -56,7 +56,7 @@ const extractPrice = station => { const currentPrice = station.prix[i]; prices.push({ gasType: currentPrice.nom, - price: parseInt(currentPrice.valeur, 10) / 1000, + price: currentPrice.valeur, updatedAt: moment(currentPrice.maj) }); }