mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +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:
|
||||
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)
|
||||
return True
|
||||
|
@ -210,7 +210,7 @@ async def test_ws_get_client_config(
|
||||
assert msg["type"] == TYPE_RESULT
|
||||
assert msg["success"]
|
||||
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