Fix bug in agenda effort summation if nothing there to display

This commit is contained in:
Daniel - 2021-01-29 17:36:21 +01:00
parent 7582c2065e
commit 6ba5fdad61
No known key found for this signature in database
GPG Key ID: 1C7071A75BB72D64
1 changed files with 5 additions and 1 deletions

View File

@ -212,7 +212,11 @@ Add this function to `org-agenda-finalize-hook'."
(insert-and-inherit
(concat " ("
(db/org-agenda-calculate-efforts
(next-single-property-change (point) 'day))
(or (next-single-property-change (point) 'day)
;; If nothing is shown on the current day, the previous
;; call may return nil; in that case, don't sum anything
;; by setting the limit to 0
0))
")"))
(forward-line)))))