mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-27 10:32:58 +02:00
All: Fixed importing ENEX file when note incorrectly contains a reminder tag
This commit is contained in:
parent
a2dbbbf832
commit
87121c9c21
@ -364,7 +364,7 @@ function importEnex(parentFolderId, filePath, importOptions = null) {
|
||||
note.longitude = noteAttributes.longitude;
|
||||
note.altitude = noteAttributes.altitude;
|
||||
note.author = noteAttributes.author;
|
||||
note.is_todo = !!noteAttributes['reminder-order'];
|
||||
note.is_todo = noteAttributes['reminder-order'] !== '0' && !!noteAttributes['reminder-order'];
|
||||
note.todo_due = dateToTimestamp(noteAttributes['reminder-time'], true);
|
||||
note.todo_completed = dateToTimestamp(noteAttributes['reminder-done-time'], true);
|
||||
note.order = dateToTimestamp(noteAttributes['reminder-order'], true);
|
||||
|
Loading…
Reference in New Issue
Block a user