Merge pull request #6033 from lvguanjun/fix_fork_session
Some checks are pending
Run Tests / test (push) Waiting to run

fix: prevent message sync between forked sessions by generating unique IDs
This commit is contained in:
Dogtiti 2025-01-11 16:19:02 +08:00 committed by GitHub
commit 4ac27fdd4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -214,7 +214,11 @@ export const useChatStore = createPersistStore(
const newSession = createEmptySession();
newSession.topic = currentSession.topic;
newSession.messages = [...currentSession.messages];
// 深拷贝消息
newSession.messages = currentSession.messages.map(msg => ({
...msg,
id: nanoid(), // 生成新的消息 ID
}));
newSession.mask = {
...currentSession.mask,
modelConfig: {