mirror of
https://github.com/langgenius/dify.git
synced 2026-04-05 23:10:48 +08:00
fix bug
This commit is contained in:
parent
34db42ecea
commit
a91bec033d
@ -487,7 +487,7 @@ class AdvancedChatAppGenerateTaskPipeline(BasedGenerateTaskPipeline, WorkflowCyc
|
||||
value = None
|
||||
for key in value_selector[1:]:
|
||||
if not value:
|
||||
value = outputs.get(key)
|
||||
value = outputs.get(key) if outputs else None
|
||||
else:
|
||||
value = value.get(key)
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user