We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 66e7f5a commit bcf0a16Copy full SHA for bcf0a16
CHANGELOG.md
@@ -3,6 +3,7 @@
3
## Unreleased
4
5
- Add `/fork` command to clone current chat into a new chat with the same history and settings, and `chat/opened` server notification.
6
+- Fix `/resume` leaving the chat stuck after replaying messages because the resumed chat's `:prompt-finished?` flag blocked finalization.
7
8
## 0.118.1
9
src/eca/features/commands.clj
@@ -401,6 +401,7 @@
401
:else
402
(let [chat (get chats selected-chat-id)]
403
(swap! db* assoc-in [:chats chat-id] chat)
404
+ (swap! db* update-in [:chats chat-id] dissoc :prompt-finished?)
405
(swap! db* update-in [:chats] #(dissoc % selected-chat-id))
406
(db/update-workspaces-cache! @db* metrics)
407
{:type :chat-messages
0 commit comments