diff options
author | Damien Pollet <[email protected]> | 2022-01-04 18:33:05 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-01-04 18:33:05 +0100 |
commit | 5ecd418060bf606924ac86faa1aa4036d4c785fb (patch) | |
tree | 0254360e0c74045faf1831a5bed8e8200a4e3c5c /org-roam-ui.el | |
parent | e52842ba7d328595852a70e72f6ed0c4201d417e (diff) |
fix(dailies): Fix typo in variable name (#196)
There is no other instance of the name `org-roam-dailies-dir` in either `org-roam-ui` and `org-roam` itself.
Diffstat (limited to 'org-roam-ui.el')
-rw-r--r-- | org-roam-ui.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/org-roam-ui.el b/org-roam-ui.el index 169927a..165e5ed 100644 --- a/org-roam-ui.el +++ b/org-roam-ui.el @@ -573,7 +573,7 @@ from all other links." (defun org-roam-ui--send-variables (ws) "Send miscellaneous org-roam variables through the websocket WS." - (let ((daily-dir (if (boundp 'org-roam-dailies-dir) + (let ((daily-dir (if (boundp 'org-roam-dailies-directory) (if (file-name-absolute-p org-roam-dailies-directory) (expand-file-name org-roam-dailies-directory) (expand-file-name |