mu-cfind: re-enable --after option

It was still there, but disabled.

Fixes #2470.
This commit is contained in:
Dirk-Jan C. Binnema
2023-04-08 20:48:46 +03:00
parent 2285355374
commit 0ab2371c5c
2 changed files with 12 additions and 8 deletions

View File

@ -191,6 +191,10 @@ sub_cfind(CLI::App& sub, Options& opts)
"Regular expression pattern to match");
sub.add_flag("--personal,-p", opts.cfind.personal,
"Only show 'personal' contacts");
sub.add_option("--after", opts.cfind.after,
"Only show results after some timestamps")
->type_name("<time_t>")
->check(CLI::PositiveNumber);
sub.add_option("--maxnum,-n", opts.cfind.maxnum,
"Maximum number of results")
->type_name("<number>")