I do not speak english - but I came across the same problem, the issue is with vulpea. In my case the problem is that vulpea is trying to run irrespective whether it is an org file or not,
(defun vulpea-buffer-p ()
"Return non-nil if the currently visited buffer is a note."
(and buffer-file-name
(eq major-mode 'org-mode) ; Check if it's an org file
(string-prefix-p
(expand-file-name (file-name-as-directory org-roam-directory))
(file-name-directory buffer-file-name))))
solved it for me. thanks