aboutsummaryrefslogtreecommitdiffstats
path: root/src/command/stats.rs
diff options
context:
space:
mode:
authorEllie Huxtable <e@elm.sh>2021-04-21 18:13:51 +0100
committerEllie Huxtable <e@elm.sh>2021-04-21 21:26:44 +0100
commit4a50ce366639ca9dac7324d6a47d6a0e6c7fccdf (patch)
tree7ffd8848f675e1377f750cc0757768d074a5ac05 /src/command/stats.rs
parentBump rusqlite from 0.25.0 to 0.25.1 (#35) (diff)
downloadatuin-4a50ce366639ca9dac7324d6a47d6a0e6c7fccdf.zip
Bugfixes, show time ago, perf improvements
Also allow unique listing and more ergonomic cwd usage
Diffstat (limited to '')
-rw-r--r--src/command/stats.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/stats.rs b/src/command/stats.rs
index 0da303d7..5c9a9dbb 100644
--- a/src/command/stats.rs
+++ b/src/command/stats.rs
@@ -94,7 +94,7 @@ impl Cmd {
}
Self::All => {
- let history = db.list()?;
+ let history = db.list(None, false)?;
compute_stats(&history)?;