We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
null
onRemove()
It's possible that parentNode is null, which causes a null dereference:
parentNode
mapbox-gl-geocoder/lib/index.js
Line 395 in 5ac5826
This can occur if the geocoder adds itself to a map, then map.remove() is called, and then the geocoder tries to remove itself from the map.
map.remove()
The text was updated successfully, but these errors were encountered:
Prevent null derference.
45a13c4
Fixes mapbox#480.
No branches or pull requests
It's possible that
parentNode
isnull
, which causes a null dereference:mapbox-gl-geocoder/lib/index.js
Line 395 in 5ac5826
This can occur if the geocoder adds itself to a map, then
map.remove()
is called, and then the geocoder tries to remove itself from the map.The text was updated successfully, but these errors were encountered: