Skip to content

Commit

Permalink
Completed execute plugin action API call
Browse files Browse the repository at this point in the history
  • Loading branch information
RogueProeliator committed Mar 17, 2024
1 parent f261efd commit f0edcd0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -375,7 +375,7 @@ def execute_plugin_action(self, action, dev=None, caller_waiting_for_result=None
indigo_plugin.executeAction(action_id, deviceId=int(device_id))
command_response = "OK"
else:
action_prop_dict = eval(actionProps)
action_prop_dict = eval(action_props)
indigo_plugin.executeAction(action_id, deviceId=int(device_id), props=action_prop_dict)
command_response = "OK"
if caller_waiting_for_result:
Expand Down

0 comments on commit f0edcd0

Please sign in to comment.