diff options
| author | Ellie Huxtable <ellie@elliehuxtable.com> | 2024-01-06 17:19:31 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-06 17:19:31 +0000 |
| commit | 4e56f5a41e5224b816e9eafed145a03cbf52fd93 (patch) | |
| tree | 3177cadbced62db723efaf6a7764f37e3c0e318a /atuin-client/src/history/builder.rs | |
| parent | fix(bash): prevent input to be interpreted as options for blesh auto-complete... (diff) | |
| download | atuin-4e56f5a41e5224b816e9eafed145a03cbf52fd93.zip | |
refactor: String -> HistoryId (#1512)
Diffstat (limited to 'atuin-client/src/history/builder.rs')
| -rw-r--r-- | atuin-client/src/history/builder.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/atuin-client/src/history/builder.rs b/atuin-client/src/history/builder.rs index 27531c95..4e69cf66 100644 --- a/atuin-client/src/history/builder.rs +++ b/atuin-client/src/history/builder.rs @@ -85,7 +85,7 @@ pub struct HistoryFromDb { impl From<HistoryFromDb> for History { fn from(from_db: HistoryFromDb) -> Self { History { - id: from_db.id, + id: from_db.id.into(), timestamp: from_db.timestamp, exit: from_db.exit, command: from_db.command, |
