Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
JarbasAl committed Oct 12, 2023
1 parent 37480eb commit c28dde3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ovos_core/intent_services/converse_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,9 +226,9 @@ def handle_ack(msg):
skill_id = msg.data["skill_id"]

# validate the converse pong
if all(skill_id not in want_converse,
if all((skill_id not in want_converse,
msg.data.get("can_handle", True),
skill_id in active_skills):
skill_id in active_skills)):
want_converse.append(skill_id)

if skill_id not in skill_ids: # track which answer we got
Expand Down

0 comments on commit c28dde3

Please sign in to comment.