diff options
-rw-r--r-- | org-clubhouse.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/org-clubhouse.el b/org-clubhouse.el index 2feff4dcf244..c2f38d8c233d 100644 --- a/org-clubhouse.el +++ b/org-clubhouse.el @@ -909,8 +909,10 @@ contents of a drawer inside the element called DESCRIPTION, if any." "TODO" "DONE") (alist-get 'description task) (alist-get 'id task) - (org-clubhouse-link-to-story - (alist-get 'story_id task)))) + (let ((story-id (alist-get 'story_id task))) + (org-make-link-string + (org-clubhouse-link-to-story story-id) + story-id)))) (defun org-clubhouse--story-to-headline-text (level story) (let ((story-id (alist-get 'id story))) |