You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-06-15 23:00:36 +02:00
All: Fixes #801: Replaced freegeoip which is no longer free with ip-api
This commit is contained in:
@ -8,17 +8,19 @@ class GeolocationNode {
|
||||
|
||||
const ip = await netUtils.ip();
|
||||
|
||||
let response = await shim.fetch('https://freegeoip.net/json/' + ip);
|
||||
let response = await shim.fetch('http://ip-api.com/json/' + ip);
|
||||
if (!response.ok) throw new Error('Could not get geolocation: ' + await response.text());
|
||||
|
||||
response = await response.json();
|
||||
|
||||
if (!('lat' in response) || !('lon' in response)) throw new Error('Invalid geolocation response: ' . JSON.stringify(response));
|
||||
|
||||
return {
|
||||
timestamp: (new Date()).getTime(),
|
||||
coords: {
|
||||
longitude: response.longitude,
|
||||
longitude: response.lon,
|
||||
altitude: 0,
|
||||
latitude: response.latitude
|
||||
latitude: response.lat
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user