(fix)capture: return id in setup-target-location (#2052)

Fixes #2051.
This commit is contained in:
Jethro Kuan
2022-01-19 18:57:07 -08:00
committed by GitHub
parent c17310f0de
commit 817d8036fb

View File

@ -577,7 +577,9 @@ Return the ID of the location."
(if-let ((id (org-entry-get p "ID"))) (if-let ((id (org-entry-get p "ID")))
(setf (org-roam-node-id org-roam-capture--node) id) (setf (org-roam-node-id org-roam-capture--node) id)
(org-entry-put p "ID" (org-roam-node-id org-roam-capture--node))) (org-entry-put p "ID" (org-roam-node-id org-roam-capture--node)))
(run-hooks 'org-roam-capture-new-node-hook)))) (prog1
(org-id-get)
(run-hooks 'org-roam-capture-new-node-hook)))))
(defun org-roam-capture--get-target () (defun org-roam-capture--get-target ()
"Get the current capture :target for the capture template in use." "Get the current capture :target for the capture template in use."