unknown_command: fix WA parsing
Apparently the wrapper now uses Python bools instead of JS bools as strings?
This commit is contained in:
parent
222f002b20
commit
73e3dedd43
|
@ -50,7 +50,7 @@ class UnknownCommandPlugin(Plugin):
|
|||
self.signal_failure(target)
|
||||
return
|
||||
|
||||
if response["@success"] != "true":
|
||||
if not response["@success"]:
|
||||
self.signal_failure(target)
|
||||
return
|
||||
|
||||
|
|
Loading…
Reference in a new issue