Skip to content

Commit

Permalink
Merge pull request #103 from cashweaver/fix/classes-cache
Browse files Browse the repository at this point in the history
fix: Use class accessor in org-fc-cache
  • Loading branch information
l3kn committed Oct 4, 2022
2 parents 4746e1b + ef37c5b commit 36fea91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion org-fc-cache.el
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ This is especially relevant w.r.t a card's due date / suspension state before re
(org-fc-review-with-current-item cur
(if (org-fc-suspended-entry-p)
(error "Trying to review a suspended card"))
(let* ((position (plist-get cur :position))
(let* ((position (oref cur pos))
(review-data (org-fc-review-data-get))
(row (assoc position review-data #'string=))
(due (parse-iso8601-time-string (nth 4 row))))
Expand Down

0 comments on commit 36fea91

Please sign in to comment.