diff --git a/importGasStations.js b/importGasStations.js index a497935..60abf7a 100644 --- a/importGasStations.js +++ b/importGasStations.js @@ -140,11 +140,11 @@ const getStationName = (start, callback) => { callback(err); } else { const html = htmlparser(body); - const name = html - .querySelector("strong") - .toString() - .replace(/[<>/]/g, "") - .replace(/strong/g, ""); + const name = html? + .querySelector("strong")? + .toString()? + .replace(/[<>/]/g, "")? + .replace(/strong/g, "") || null; if (name) { item.name = name;