Skip to content

Commit

Permalink
Merge pull request #519 from greghesp/develop
Browse files Browse the repository at this point in the history
Merge develop->main
  • Loading branch information
AdrianGarside authored Apr 27, 2024
2 parents 197803c + 030ee97 commit a92d167
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion custom_components/bambu_lab/camera.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion custom_components/bambu_lab/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@
"st": "urn:bambulab-com:device:3dprinter:1"
}
],
"version": "2.0.20"
"version": "2.0.21"
}
3 changes: 3 additions & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### V2.0.21
- ???

### V2.0.20
- Redact RTSP URL in debug logs.
- Fix missing start/end time for X1 printers.
Expand Down

0 comments on commit a92d167

Please sign in to comment.