We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c174e4 commit 3791c85Copy full SHA for 3791c85
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "simplyprint-duet3d"
3
-version = "1.3.8"
+version = "1.3.9"
4
description = "SimplyPrint integration with any Duet3D powered RepRapFirmware printers "
5
readme = "README.rst"
6
license-files = ["LICENSE"]
simplyprint_duet3d/cli/autodiscover.py
@@ -79,6 +79,8 @@ async def get_webcam_url(duet: RepRapFirmware) -> str:
79
80
if duet_url_parse.hostname != '':
81
hostname = duet_url_parse.hostname
82
+ if ":" in hostname:
83
+ hostname = f"[{hostname}]"
84
if webcam_url_parse.port is not None:
85
hostname = f"{hostname}:{webcam_url_parse.port}"
86
if hostname == '':
0 commit comments