Skip to content

Commit 9a42bd2

Browse files
committed
refactor: add client_id
1 parent 35b662a commit 9a42bd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

apps/application/flow/step_node/application_node/impl/base_application_node.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,8 @@ def execute(self, application_id, message, chat_id, chat_record_id, stream, re_c
179179
current_chat_id = string_to_uuid(chat_id + application_id)
180180
Chat.objects.get_or_create(id=current_chat_id, defaults={
181181
'application_id': application_id,
182-
'abstract': message[0:1024]
182+
'abstract': message[0:1024],
183+
'client_id': client_id,
183184
})
184185
if app_document_list is None:
185186
app_document_list = []

0 commit comments

Comments
 (0)