Skip to content

Commit bc937cb

Browse files
square99Sangheon Heo
authored and
Sangheon Heo
committed
Fix proxy camera conversion with PNG Alpha(RGBA)
1 parent 0582bf7 commit bc937cb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

homeassistant/components/proxy/camera.py

+2
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,8 @@ def _precheck_image(image, opts):
7777
if imgfmt not in ("PNG", "JPEG"):
7878
_LOGGER.warning("Image is of unsupported type: %s", imgfmt)
7979
raise ValueError()
80+
if not img.mode == "RGB":
81+
img = img.convert("RGB")
8082
return img
8183

8284

0 commit comments

Comments
 (0)