diff options
| author | adamdottv <[email protected]> | 2025-05-12 13:01:59 -0500 |
|---|---|---|
| committer | adamdottv <[email protected]> | 2025-05-12 13:01:59 -0500 |
| commit | 8270a1e4b133b44b4b68c8b52567200fc69343e6 (patch) | |
| tree | 73369cc977081f3b5c60d14d27a75aa6149fae4d /internal/session | |
| parent | 7f9c992993b56c0c3f2895632d81b64f209a4d94 (diff) | |
| download | opencode-8270a1e4b133b44b4b68c8b52567200fc69343e6.tar.gz opencode-8270a1e4b133b44b4b68c8b52567200fc69343e6.zip | |
chore: cleanup
Diffstat (limited to 'internal/session')
| -rw-r--r-- | internal/session/session.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/session/session.go b/internal/session/session.go index e377bfd21..c3c4cf56e 100644 --- a/internal/session/session.go +++ b/internal/session/session.go @@ -209,8 +209,8 @@ func (s *service) fromDBItem(item db.Session) Session { Cost: item.Cost, Summary: item.Summary.String, SummarizedAt: item.SummarizedAt.Int64, - CreatedAt: item.CreatedAt, - UpdatedAt: item.UpdatedAt, + CreatedAt: item.CreatedAt * 1000, + UpdatedAt: item.UpdatedAt * 1000, } } |
