Fix kodi.call_method (#40236)
This commit is contained in:
parent
2d9019d4b2
commit
3f514da285
1 changed files with 1 additions and 1 deletions
|
@ -714,7 +714,7 @@ class KodiEntity(MediaPlayerEntity):
|
|||
_LOGGER.debug("Run API method %s, kwargs=%s", method, kwargs)
|
||||
result_ok = False
|
||||
try:
|
||||
result = self._kodi.call_method(method, **kwargs)
|
||||
result = await self._kodi.call_method(method, **kwargs)
|
||||
result_ok = True
|
||||
except jsonrpc_base.jsonrpc.ProtocolError as exc:
|
||||
result = exc.args[2]["error"]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue