Remove missed handleRecurrence/handleUntil calls (#3771)

These were missed in #3753.
This commit is contained in:
Dustin J. Mitchell 2025-02-06 02:31:33 -05:00 committed by GitHub
parent 7871617e9c
commit d6658fe26f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 2 additions and 16 deletions

View file

@ -64,7 +64,7 @@ CmdEdit::CmdEdit() {
_read_only = false;
_displays_id = false;
_needs_gc = false;
_needs_recur_update = false;
_needs_recur_update = true;
_uses_context = true;
_accepts_filter = true;
_accepts_modifications = false;
@ -78,8 +78,6 @@ CmdEdit::CmdEdit() {
// wrench. To be used sparingly.
int CmdEdit::execute(std::string&) {
// Filter the tasks.
handleUntil();
handleRecurrence();
Filter filter;
std::vector<Task> filtered;
filter.subset(filtered);