Skip to content

Commit 725db0f

Browse files
committed
Fix from last release
Fixes #171
1 parent dc6b714 commit 725db0f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
## Unreleased
44

5+
## 1.22.2
6+
7+
* Fix `(wront-type-argument stringp ("daemon"))` on last version. #171
8+
9+
## 1.22.1
10+
511
* Fix some emulators not starting for new sdk debugger. #167
612
* Fix duplicated logs on old debugger. #154
713
* Fix `lsp-dart-run` for dart only files. #168

lsp-dart-flutter-daemon.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
(unless (lsp-dart-flutter-daemon--running-p)
5656
(let ((buffer (get-buffer-create lsp-dart-flutter-daemon-buffer-name))
5757
(command (lsp-dart-flutter-command)))
58-
(make-comint-in-buffer lsp-dart-flutter-daemon-name buffer (car command) nil (append (cdr command) '("daemon")))
58+
(make-comint-in-buffer lsp-dart-flutter-daemon-name buffer (car command) nil (string-join (append (cdr command) '("daemon")) " "))
5959
(with-current-buffer buffer
6060
(unless (derived-mode-p 'lsp-dart-flutter-daemon-mode)
6161
(lsp-dart-flutter-daemon-mode))

0 commit comments

Comments
 (0)