From 6bdde3a634785097de7bfb4c90ced72c975de0ba Mon Sep 17 00:00:00 2001 From: Jethro Kuan Date: Tue, 14 Apr 2020 16:31:14 +0800 Subject: [PATCH] (bugfix): fix org-roam-graph--open (#456) --- org-roam-graph.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org-roam-graph.el b/org-roam-graph.el index 634209f..a2a989b 100644 --- a/org-roam-graph.el +++ b/org-roam-graph.el @@ -227,7 +227,7 @@ For building and showing the graph in a single step see `org-roam-graph-show'." "Open FILE using `org-roam-graph-viewer', with `view-file' as a fallback." (if (and org-roam-graph-viewer (executable-find org-roam-graph-viewer)) (call-process org-roam-graph-viewer nil 0 nil file) - (view-file temp-graph))) + (view-file file))) (defun org-roam-graph-show (&optional node-query) "Generate and display a graph showing the relations between nodes in NODE-QUERY.