bugfix: CSV Agent was overwriting contents when multiple files were u… (#2002)

bugfix: CSV Agent was overwriting contents when multiple files were uploaded
This commit is contained in:
Vinod Paidimarry 2024-03-21 22:08:03 +05:30 committed by GitHub
parent dee681b63e
commit 0267005225
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ class CSV_Agents implements INode {
for (const file of files) {
const splitDataURI = file.split(',')
splitDataURI.pop()
base64String = splitDataURI.pop() ?? ''
base64String += splitDataURI.pop() ?? ''
}
const pyodide = await LoadPyodide()