diff --git a/custom_components/bambu_lab/camera.py b/custom_components/bambu_lab/camera.py index 9190dfeb..df262b04 100644 --- a/custom_components/bambu_lab/camera.py +++ b/custom_components/bambu_lab/camera.py @@ -82,7 +82,7 @@ async def stream_source(self) -> str | None: url = fr"{parsed_url.scheme}://bblp:{self._access_code}@{self._host}:{port}{parsed_url.path}" else: url = fr"{parsed_url.scheme}://bblp:{self._access_code}@{parsed_url.netloc}{parsed_url.path}" - LOGGER.debug(f"Adjusted RTSP URL: {url.replace(self._access_code, "**REDACTED**")}") + LOGGER.debug(f"Adjusted RTSP URL: {url.replace(self._access_code, '**REDACTED**')}") return str(url) LOGGER.debug("No RTSP Feed available") return None \ No newline at end of file diff --git a/custom_components/bambu_lab/manifest.json b/custom_components/bambu_lab/manifest.json index 22c62c74..4b8bc846 100644 --- a/custom_components/bambu_lab/manifest.json +++ b/custom_components/bambu_lab/manifest.json @@ -18,5 +18,5 @@ "st": "urn:bambulab-com:device:3dprinter:1" } ], - "version": "2.0.20" + "version": "2.0.21" } \ No newline at end of file diff --git a/release_notes.md b/release_notes.md index 7550e883..b46af783 100644 --- a/release_notes.md +++ b/release_notes.md @@ -1,3 +1,6 @@ +### V2.0.21 +- ??? + ### V2.0.20 - Redact RTSP URL in debug logs. - Fix missing start/end time for X1 printers.