Fixed auto-save when sending assistant results to a new chat (#216)

This commit is contained in:
Thorsten Sommer 2024-11-23 10:54:58 +01:00 committed by GitHub
parent 1c72c4d6ec
commit ba6b8d2b3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View File

@ -85,7 +85,7 @@ public partial class Chat : MSGComponentBase, IAsyncDisposable
}
}
if(this.chatThread.WorkspaceId != Guid.Empty)
if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is WorkspaceStorageBehavior.STORE_CHATS_AUTOMATICALLY)
{
this.autoSaveEnabled = true;
this.mustStoreChat = true;

View File

@ -1,2 +1,3 @@
# v0.9.21, build 196 (2024-11-1x xx:xx UTC)
# v0.9.21, build 196 (2024-11-xx xx:xx UTC)
- Fixed the missed workspace title when loading the today's bias.
- Fixed auto-save when sending assistant results to a new chat.