summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2024-05-27 06:01:42 +0300
committerThanos Apollo <[email protected]>2024-05-27 06:01:42 +0300
commit747922756245fa05d6a6506711c46952a86e533d (patch)
treeb670621fccc59bf3dc855b2f6dbbf8e0e0484b17
parent0ed567b0d95b53eebff1f0325957f926e9aa3da6 (diff)
[fix] gnosis-review-last-interval: Minimum value to return is 1
Returning 0 would break algorithm implementation
-rw-r--r--gnosis.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnosis.el b/gnosis.el
index 712a427..5d4178c 100644
--- a/gnosis.el
+++ b/gnosis.el
@@ -1142,7 +1142,7 @@ well."
(let* ((where-id-clause `(= id ,id))
(last-rev (gnosis-get 'last-rev 'review-log where-id-clause))
(rev-date (gnosis-get 'next-rev 'review-log where-id-clause)))
- (gnosis-algorithm-date-diff last-rev rev-date)))
+ (max (gnosis-algorithm-date-diff last-rev rev-date) 1)))
(defun gnosis-review-algorithm (id success)
"Return next review date & ef for note with value of id ID.