Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
08772004
Unverified
Commit
08772004
authored
2 years ago
by
Franck Nijhof
Committed by
GitHub
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix SSDP failure to start on missing URLs (#81453)
parent
203c83b6
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
homeassistant/components/ssdp/__init__.py
+11
-2
11 additions, 2 deletions
homeassistant/components/ssdp/__init__.py
with
11 additions
and
2 deletions
homeassistant/components/ssdp/__init__.py
+
11
−
2
View file @
08772004
...
@@ -52,7 +52,7 @@ from homeassistant.helpers import discovery_flow
...
@@ -52,7 +52,7 @@ from homeassistant.helpers import discovery_flow
from
homeassistant.helpers.aiohttp_client
import
async_get_clientsession
from
homeassistant.helpers.aiohttp_client
import
async_get_clientsession
from
homeassistant.helpers.event
import
async_track_time_interval
from
homeassistant.helpers.event
import
async_track_time_interval
from
homeassistant.helpers.instance_id
import
async_get
as
async_get_instance_id
from
homeassistant.helpers.instance_id
import
async_get
as
async_get_instance_id
from
homeassistant.helpers.network
import
get_url
from
homeassistant.helpers.network
import
NoURLAvailableError
,
get_url
from
homeassistant.helpers.system_info
import
async_get_system_info
from
homeassistant.helpers.system_info
import
async_get_system_info
from
homeassistant.helpers.typing
import
ConfigType
from
homeassistant.helpers.typing
import
ConfigType
from
homeassistant.loader
import
async_get_ssdp
,
bind_hass
from
homeassistant.loader
import
async_get_ssdp
,
bind_hass
...
@@ -697,7 +697,16 @@ class Server:
...
@@ -697,7 +697,16 @@ class Server:
udn
=
await
self
.
_async_get_instance_udn
()
udn
=
await
self
.
_async_get_instance_udn
()
system_info
=
await
async_get_system_info
(
self
.
hass
)
system_info
=
await
async_get_system_info
(
self
.
hass
)
model_name
=
system_info
[
"
installation_type
"
]
model_name
=
system_info
[
"
installation_type
"
]
presentation_url
=
get_url
(
self
.
hass
,
allow_ip
=
True
,
prefer_external
=
False
)
try
:
presentation_url
=
get_url
(
self
.
hass
,
allow_ip
=
True
,
prefer_external
=
False
)
except
NoURLAvailableError
:
_LOGGER
.
warning
(
"
Could not set up UPnP/SSDP server, as a presentation URL could
"
"
not be determined; Please configure your internal URL
"
"
in the Home Assistant general configuration
"
)
return
serial_number
=
await
async_get_instance_id
(
self
.
hass
)
serial_number
=
await
async_get_instance_id
(
self
.
hass
)
HassUpnpServiceDevice
.
DEVICE_DEFINITION
=
(
HassUpnpServiceDevice
.
DEVICE_DEFINITION
=
(
HassUpnpServiceDevice
.
DEVICE_DEFINITION
.
_replace
(
HassUpnpServiceDevice
.
DEVICE_DEFINITION
.
_replace
(
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment