Skip to content

Commit 635f8d3

Browse files
authored
Fix Go2RTC 1.9.0 compatibility by injecting valid dummy schema (#1452)
Co-authored-by: abhiravk <abhiravk@users.noreply.github.com>
1 parent 5182a3e commit 635f8d3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

custom_components/eufy_security/eufy_security_api/p2p_streamer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ async def _create_stream_on_go2rtc(self):
7373
result = response.status, await response.text()
7474
_LOGGER.debug(f"create_stream_on_go2rtc - delete stream response {result}")
7575

76-
parameters = {"name": str(self.camera.serial_no), "src": str(self.camera.serial_no)}
76+
parameters = {"name": str(self.camera.serial_no), "src": "tcp://127.0.0.1:65535"}
7777
url = GO2RTC_API_URL.format(self.camera.config.rtsp_server_address, GO2RTC_API_PORT)
7878
url = f"{url}s"
7979
async with aiohttp.ClientSession() as session:

0 commit comments

Comments
 (0)