make fake http response

This commit is contained in:
Andrey
2021-02-18 11:11:30 +03:00
parent 0a71be693e
commit 0c43e61c59

View File

@@ -78,7 +78,8 @@ class MegaView(HomeAssistantView):
template.hass = hass
ret = template.async_render(data)
_LOGGER.debug('response %s', ret)
ret = Response(body=ret or 'd', content_type='text/plain', headers={'Server': 's', 'Date': 'n'})
ret = Response(body='', content_type='text/plain', headers={'Server': 's', 'Date': 'n'})
await hub.request(cmd=ret)
return ret
async def later_update(self, hub):