Spaces:
Sleeping
Sleeping
OnlyBiggg
commited on
Commit
·
076bbfe
1
Parent(s):
9239ad2
fix usr name
Browse files
app/dialogflow/services/dialog_service.py
CHANGED
|
@@ -407,7 +407,8 @@ class DialogService:
|
|
| 407 |
user_name = user_name_pred[0]
|
| 408 |
|
| 409 |
if user_name:
|
| 410 |
-
|
|
|
|
| 411 |
|
| 412 |
return None
|
| 413 |
|
|
|
|
| 407 |
user_name = user_name_pred[0]
|
| 408 |
|
| 409 |
if user_name:
|
| 410 |
+
user_name_resp = { "name": user_name, "original": user_name }
|
| 411 |
+
return user_name_resp
|
| 412 |
|
| 413 |
return None
|
| 414 |
|