Skip to content

v1.1.3 - Any reason for switching from setting both creation/modified dates to same (from both set to modified to now both set to created) #9

@stereomatch

Description

@stereomatch

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions