Fix ESPHome media proxy exit criteria (#129267)
parent
88f0a33e69
commit
2888e5748e
|
@ -181,7 +181,6 @@ class FFmpegConvertResponse(web.StreamResponse):
|
|||
self.hass.is_running
|
||||
and (request.transport is not None)
|
||||
and (not request.transport.is_closing())
|
||||
and (proc.returncode is None)
|
||||
and (chunk := await proc.stdout.read(self.chunk_size))
|
||||
):
|
||||
await writer.write(chunk)
|
||||
|
|
Loading…
Reference in New Issue