From 3b93c83b231e2b9b0c15e6b5e13534f2dd1b2804 Mon Sep 17 00:00:00 2001 From: Roshan Shariff Date: Fri, 1 Oct 2021 01:45:02 -0600 Subject: [PATCH] (fix)db: Require 'oc to get org-cite functionality. (#1849) --- org-roam-db.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-roam-db.el b/org-roam-db.el index 16769e1..6914450 100644 --- a/org-roam-db.el +++ b/org-roam-db.el @@ -534,7 +534,7 @@ If the file exists, update the cache with information." (setq info (org-element-parse-buffer)) (org-roam-db-map-links (list #'org-roam-db-insert-link)) - (when (require 'org-cite nil 'noerror) + (when (require 'oc nil 'noerror) (org-roam-db-map-citations info (list #'org-roam-db-insert-citation)))))))))