We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.9.3
MacOS
Sonoma 14.4.1
Yarle reports that the reminder time is in the wrong format.
evernote-backup's notebook XML of a note shows
<reminder-time>1719842400000</reminder-time>
where an ENEX export of the same notebook shows the note's reminder as
<reminder-time>20240701T140000Z</reminder-time>
10.84.3-mac-ddl-public (20240409145102) Editor: v177.16.3 Service: v1.100.4 © 2019 - 2024 Evernote Corporation. All rights reserved
No response
The text was updated successfully, but these errors were encountered:
It looks like the problem is in note_formatter.py that has (starting in line 34 of the source I looked at):
if note.attributes: note_skeleton["note"]["note-attributes"] = { "subject-date": fmt_time(note.attributes.subjectDate), "latitude": note.attributes.latitude, "longitude": note.attributes.longitude, "altitude": note.attributes.altitude, "author": note.attributes.author, "source": note.attributes.source, "source-url": note.attributes.sourceURL, "source-application": note.attributes.sourceApplication, "reminder-order": note.attributes.reminderOrder, "reminder-time": note.attributes.reminderTime, "reminder-done-time": note.attributes.reminderDoneTime, "place-name": note.attributes.placeName, "content-class": note.attributes.contentClass, }
I think the lines with reminder-time and reminder-done-time should have the value converted with fmt_time()
"reminder-time": fmt_time(note.attributes.reminderTime), "reminder-done-time": fmt_time(note.attributes.reminderDoneTime),
Sorry, something went wrong.
No branches or pull requests
evernote-backup version
1.9.3
What OS are you using?
MacOS
OS Version / Linux distribution
Sonoma 14.4.1
Bug description
Yarle reports that the reminder time is in the wrong format.
evernote-backup's notebook XML of a note shows
where an ENEX export of the same notebook shows the note's reminder as
10.84.3-mac-ddl-public (20240409145102)
Editor: v177.16.3
Service: v1.100.4
© 2019 - 2024 Evernote Corporation. All rights reserved
Log excerpt
No response
The text was updated successfully, but these errors were encountered: