aboutsummaryrefslogtreecommitdiffstats
path: root/atuin-client/src/encryption.rs
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2023-08-07 11:18:39 +0100
committerGitHub <noreply@github.com>2023-08-07 11:18:39 +0100
commit0d5332a87facabb7227458586002226fafa11acb (patch)
tree719adf05cb0c5ae999e4e2fee00436c0376053ae /atuin-client/src/encryption.rs
parentfix(docs): Correct command overview paths (#1145) (diff)
downloadatuin-0d5332a87facabb7227458586002226fafa11acb.zip
Prepare release v16.0.0 (#1143)
* Prepare release v16.0.0 * Remove debug output * Fix kv dupes if the store already exists * Add limit in frontend as well as sync backend
Diffstat (limited to 'atuin-client/src/encryption.rs')
-rw-r--r--atuin-client/src/encryption.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/atuin-client/src/encryption.rs b/atuin-client/src/encryption.rs
index 00185fb6..d6c5f893 100644
--- a/atuin-client/src/encryption.rs
+++ b/atuin-client/src/encryption.rs
@@ -147,8 +147,7 @@ fn encode(h: &History) -> Result<Vec<u8>> {
encode::write_str(&mut output, &h.id)?;
encode::write_str(
&mut output,
- &dbg!(h
- .timestamp
+ &(h.timestamp
.to_rfc3339_opts(chrono::SecondsFormat::AutoSi, true)),
)?;
encode::write_sint(&mut output, h.duration)?;