1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Fixed various bugs

This commit is contained in:
Laurent Cozic
2017-07-10 20:59:58 +00:00
parent 5a434bb771
commit 3f50e419da
5 changed files with 17 additions and 8 deletions

View File

@@ -96,6 +96,8 @@ class Note extends BaseItem {
}
static updateGeolocation(noteId) {
if (!Note.updateGeolocationEnabled_) return;
this.logger().info('Updating lat/long of note ' + noteId);
let geoData = null;
@@ -144,4 +146,6 @@ class Note extends BaseItem {
}
Note.updateGeolocationEnabled_ = true;
export { Note };