I was wondering why the exported files have creation and modified times set to the same
In version 1.1.3 - the change is:
a19e485
from:
err = updateTimes(notePath, note.UpdatedAt)
err := os.Chtimes(path, updatedAt, updatedAt)
to:
err = updateTimes(notePath, note.CreatedAt)
err := os.Chtimes(path, createdAt, createdAt)
That is, both creation and modified times are being set to the same thing
Was there an issue with setting creation to the creation time and modified to the modified time?
Was there a problem with that - that both creation/modified times were chosen to be set to the same thing?
Thanks.