mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-24 10:27:10 +02:00
Fixed typo
This commit is contained in:
parent
44986a35a4
commit
127dce1cd6
@ -13,7 +13,7 @@ class GeolocationNode {
|
||||
|
||||
response = await response.json();
|
||||
|
||||
if (!('lat' in response) || !('lon' in response)) throw new Error('Invalid geolocation response: ' . (response ? JSON.stringify(response) : '<null>'));
|
||||
if (!('lat' in response) || !('lon' in response)) throw new Error('Invalid geolocation response: ' + (response ? JSON.stringify(response) : '<null>'));
|
||||
|
||||
return {
|
||||
timestamp: (new Date()).getTime(),
|
||||
|
Loading…
Reference in New Issue
Block a user