Skip to content

Commit be0d83b

Browse files
committed
fix: 处理多文档时文件内容提取不正确的问题
1 parent 10e53f0 commit be0d83b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/application/flow/step_node/document_extract_node/impl/base_document_extract_node.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def execute(self, document, **kwargs):
3030
buffer.seek(0)
3131
file_content = split_handle.get_content(buffer)
3232
content += spliter + '## ' + doc['name'] + '\n' + file_content
33-
return NodeResult({'content': content}, {})
33+
break
3434

3535
return NodeResult({'content': content}, {})
3636

0 commit comments

Comments
 (0)