Fixed plyer bug

This commit is contained in:
Mark Qvist 2023-10-25 03:40:08 +02:00
parent 7da64a10cf
commit 34ec42fc89

View File

@ -81,7 +81,8 @@ class AndroidGPS(GPS):
Looper.getMainLooper())
def _stop(self):
self._location_manager.removeUpdates(self._location_listener)
if hasattr(self, "_location_manager") and self._location_manager != None:
self._location_manager.removeUpdates(self._location_listener)
def instance():