Skip to content

Commit

Permalink
adding a document loader returns the correct id (FlowiseAI#2538)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredmcqueen committed Jun 4, 2024
1 parent 55f52c4 commit bdbb6f8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/services/documentstore/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ const getDocumentStoreFileChunks = async (storeId: string, fileId: string, pageN
})
if (found) {
found.totalChars = totalChars
found.id = entity.id
found.id = fileId
found.status = entity.status
}
const PAGE_SIZE = 50
Expand Down

0 comments on commit bdbb6f8

Please sign in to comment.