Debug
This commit is contained in:
parent
e0634aeeab
commit
ba4063ad40
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue