mirror of
https://github.com/home-assistant/core.git
synced 2025-07-13 16:27:08 +00:00
Don't return coroutine in DLNA/DMR service handler (#32011)
Fixes #32010
This commit is contained in:
parent
832337f26c
commit
b6d60c36a5
@ -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…
x
Reference in New Issue
Block a user