mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-04-17 18:18:11 +00:00
Fix typo leading to agent history in threads not being unique in same workspace (#1350)
This commit is contained in:
parent
5eec5cbb9e
commit
98953d70b7
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class AgentHandler {
|
|||
{
|
||||
workspaceId: this.invocation.workspace_id,
|
||||
user_id: this.invocation.user_id || null,
|
||||
thread_id: this.invocation.user_id || null,
|
||||
thread_id: this.invocation.thread_id || null,
|
||||
include: true,
|
||||
},
|
||||
limit,
|
||||
|
|
Loading…
Add table
Reference in a new issue