mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 21:27:38 +00:00
Change Stun server port to 80 (#128879)
This commit is contained in:
parent
cdf809926b
commit
de77751779
@ -402,7 +402,7 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
|
|||||||
)
|
)
|
||||||
|
|
||||||
async def get_ice_server() -> RTCIceServer:
|
async def get_ice_server() -> RTCIceServer:
|
||||||
return RTCIceServer(urls="stun:stun.home-assistant.io:3478")
|
return RTCIceServer(urls="stun:stun.home-assistant.io:80")
|
||||||
|
|
||||||
register_ice_server(hass, get_ice_server)
|
register_ice_server(hass, get_ice_server)
|
||||||
return True
|
return True
|
||||||
|
@ -210,7 +210,7 @@ async def test_ws_get_client_config(
|
|||||||
assert msg["type"] == TYPE_RESULT
|
assert msg["type"] == TYPE_RESULT
|
||||||
assert msg["success"]
|
assert msg["success"]
|
||||||
assert msg["result"] == {
|
assert msg["result"] == {
|
||||||
"configuration": {"iceServers": [{"urls": "stun:stun.home-assistant.io:3478"}]}
|
"configuration": {"iceServers": [{"urls": "stun:stun.home-assistant.io:80"}]}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user