We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0582bf7 commit bc937cbCopy full SHA for bc937cb
homeassistant/components/proxy/camera.py
@@ -77,6 +77,8 @@ def _precheck_image(image, opts):
77
if imgfmt not in ("PNG", "JPEG"):
78
_LOGGER.warning("Image is of unsupported type: %s", imgfmt)
79
raise ValueError()
80
+ if not img.mode == "RGB":
81
+ img = img.convert("RGB")
82
return img
83
84
0 commit comments