Merge pull request #1697 from NousResearch/fix/gateway-skill-command-nameref
fix(gateway): NameError on skill slash commands — wrong variable reference
This commit is contained in:
commit
ea238721f0
1 changed files with 1 additions and 1 deletions
|
|
@ -1481,7 +1481,7 @@ class GatewayRunner:
|
||||||
if cmd_key in skill_cmds:
|
if cmd_key in skill_cmds:
|
||||||
user_instruction = event.get_command_args().strip()
|
user_instruction = event.get_command_args().strip()
|
||||||
msg = build_skill_invocation_message(
|
msg = build_skill_invocation_message(
|
||||||
cmd_key, user_instruction, task_id=session_key
|
cmd_key, user_instruction, task_id=_quick_key
|
||||||
)
|
)
|
||||||
if msg:
|
if msg:
|
||||||
event.text = msg
|
event.text = msg
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue