FIX repeated deadlines in agenda

This commit is contained in:
Nathan Dwarshuis 2022-05-18 23:30:38 -04:00
parent 3778f8bd7d
commit 9f0ca73f36
1 changed files with 1 additions and 1 deletions

View File

@ -2722,7 +2722,7 @@ FUTURE-LIMIT in a list."
(`nil `(,datetime))
(`(,value ,unit ,reptype)
(->> (org-x-dag-repeater-get-next cur datetime value unit reptype)
(--unfold (unless (org-x-dag-datetime< future-limit it)
(--unfold (when (org-x-dag-datetime< it future-limit)
(cons it (org-x-dag-datetime-shift it value unit))))
(cons datetime))))))