Skip to content

Commit 332ec67

Browse files
committed
Fix log message destructuring in notification handler (#407)
1 parent 3e36a98 commit 332ec67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

copilot.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ Each request METHOD can have only one HANDLER."
792792
(copilot-on-notification
793793
'window/logMessage
794794
(lambda (msg)
795-
(copilot--dbind (:type log-level :message log-msg) msg
795+
(copilot--dbind (((:type log-level)) ((:message log-msg))) msg
796796
(with-current-buffer (get-buffer-create "*copilot-language-server-log*")
797797
(save-excursion
798798
(goto-char (point-max))

0 commit comments

Comments
 (0)