diff options
Diffstat (limited to '')
| -rw-r--r-- | src/command/client.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/command/client.rs b/src/command/client.rs index 551b2225..2a825638 100644 --- a/src/command/client.rs +++ b/src/command/client.rs @@ -53,7 +53,7 @@ impl Cmd { Self::History(history) => history.run(&settings, &mut db).await, Self::Import(import) => import.run(&mut db).await, Self::Stats(stats) => stats.run(&mut db, &settings).await, - Self::Search(search) => search.run(&mut db, &mut settings).await, + Self::Search(search) => search.run(db, &mut settings).await, #[cfg(feature = "sync")] Self::Sync(sync) => sync.run(settings, &mut db).await, } |
