You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There's a case where the crawler may generate data with invalid URLs. When the detector tries to parse the url and save the path the detector will crash. It may be better in this case to make a best effort to pull the path from the URL or at the very least catch the exception so we can continue.
The error occurs in src/trackers/helpers/parseUrl.js:
There's a case where the crawler may generate data with invalid URLs. When the detector tries to parse the url and save the path the detector will crash. It may be better in this case to make a best effort to pull the path from the URL or at the very least catch the exception so we can continue.
The error occurs in
src/trackers/helpers/parseUrl.js
:this.path = new urlParse.URL(url).pathname
My workaround for the time being is this:
The text was updated successfully, but these errors were encountered: