Don't return coroutine in DLNA/DMR service handler (#32011)
Fixes #32010
This commit is contained in:
parent
832337f26c
commit
b6d60c36a5
1 changed files with 2 additions and 2 deletions
|
@ -99,10 +99,10 @@ def catch_request_errors():
|
|||
"""Call wrapper for decorator."""
|
||||
|
||||
@functools.wraps(func)
|
||||
def wrapper(self, *args, **kwargs):
|
||||
async def wrapper(self, *args, **kwargs):
|
||||
"""Catch asyncio.TimeoutError, aiohttp.ClientError errors."""
|
||||
try:
|
||||
return func(self, *args, **kwargs)
|
||||
return await func(self, *args, **kwargs)
|
||||
except (asyncio.TimeoutError, aiohttp.ClientError):
|
||||
_LOGGER.error("Error during call %s", func.__name__)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue