mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
Fix memoryOutputData
This commit is contained in:
parent
fdb41fcdbc
commit
67caac5aec
|
@ -277,7 +277,7 @@ export function useChatMessaging({
|
||||||
|
|
||||||
const memoryOutputData = (nodeResultData ?? [])
|
const memoryOutputData = (nodeResultData ?? [])
|
||||||
.map((data) => get(data, ['data', NodeConnectionType.AiMemory, 0, 0, 'json']) as MemoryOutput)
|
.map((data) => get(data, ['data', NodeConnectionType.AiMemory, 0, 0, 'json']) as MemoryOutput)
|
||||||
.find((data) => data.action === 'saveContext');
|
.find((data) => data && data.action === 'saveContext');
|
||||||
|
|
||||||
return (memoryOutputData?.chatHistory ?? []).map((message, index) => {
|
return (memoryOutputData?.chatHistory ?? []).map((message, index) => {
|
||||||
return {
|
return {
|
||||||
|
|
Loading…
Reference in a new issue