heikkilevanto / beertracker

Simple script to track the beers I drink
GNU General Public License v2.0
2 stars 1 forks source link

Geo broken? #272

Closed heikkilevanto closed 6 months ago

heikkilevanto commented 6 months ago

Don't see any Geo coordinates today

heikkilevanto commented 6 months ago

Works now. Or was a browser permission thing

heikkilevanto commented 6 months ago

My android firefox keeps disabling location access for my site.

heikkilevanto commented 6 months ago

Looks like it happens if the code asks for location too often. Disabling rechecking the location on window.onFocus fixes the permission problem, but the location will not update if I walk from a bar to another.

heikkilevanto commented 6 months ago

The proper solution would be to keep a time stamp from when I got the location last, and get a new one only if more than a minute has passed.

But it turns out that I was getting the location twice, first on document.onload(), and immediately after on window.onFocus. Removing the document.onload seems to be enough