Revert "Fix unix timestamp in file upload"

This reverts commit 2b066997d1.
pull/172/head
Matt Baer 5 years ago
parent 2b066997d1
commit 65e2e5126b
  1. 3
      account_import.go

@ -146,8 +146,7 @@ func handleImport(app *App, u *User, w http.ResponseWriter, r *http.Request) err
if collAlias != "" {
post.Collection = collAlias
}
ts := fileDates[formFile.Filename] / 1000 // Get timestamp in seconds, not milliseconds
dateTime := time.Unix(ts, 0)
dateTime := time.Unix(fileDates[formFile.Filename], 0)
post.Created = &dateTime
created := post.Created.Format("2006-01-02T15:04:05Z")
submittedPost := SubmittedPost{

Loading…
Cancel
Save