From ef37c5be7bd5074be39af73d08f8efd3d2ff79ca Mon Sep 17 00:00:00 2001 From: Cash Weaver Date: Tue, 4 Oct 2022 09:26:27 -0700 Subject: [PATCH] fix: Use class accessor in org-fc-cache --- org-fc-cache.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-fc-cache.el b/org-fc-cache.el index 9168bd6..0c4adbb 100644 --- a/org-fc-cache.el +++ b/org-fc-cache.el @@ -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))))