fix(time): correct export data timestamp conversions (#586)

This commit is contained in:
Roger
2026-04-23 20:39:56 +08:00
committed by GitHub
parent 0c6c781567
commit 50c4ea84cb
14 changed files with 228 additions and 30 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ func extractPasswords(keychainPassword string) ([]types.LoginEntry, error) {
URL: url,
Username: p.Account,
Password: p.PlainPassword,
CreatedAt: p.Created,
CreatedAt: p.Created.UTC(),
})
}