From 03641ca2868d5ef21ffe426fa547dd859ce1c474 Mon Sep 17 00:00:00 2001 From: "Thomas F. K. Jorna" Date: Sat, 9 Oct 2021 14:08:34 +0200 Subject: fix(preview): changed from api routing to emacs server --- org-roam-ui.el | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'org-roam-ui.el') diff --git a/org-roam-ui.el b/org-roam-ui.el index 2d10abb..e018b09 100644 --- a/org-roam-ui.el +++ b/org-roam-ui.el @@ -237,13 +237,9 @@ This serves the web-build and API over HTTP." (json-encode `((type . "orgText") (data . ,text)))))) (defservlet* note/:id text/plain () - (if-let ((node (org-roam-populate (org-roam-node-create :id id))) - (file (org-roam-node-file node))) (progn - (insert-file-contents-literally file) - (message "we got one %s" file) - )) -(httpd-send-header t "text/plain" 200 :Access-Control-Allow-Origin "*")) + (insert-file-contents-literally (org-link-decode file)) +(httpd-send-header t "text/plain" 200 :Access-Control-Allow-Origin "*"))) ;(insert "error") ;(httpd-send-header t "text/plain" 200 :Access-Control-Allow-Origin "*") -- cgit v1.2.3