Skip to content

Commit 48e70a7

Browse files
committed
Use https if selected, fix #10
1 parent 1f9aeba commit 48e70a7

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

custom_components/speedport/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ async def async_setup_entry(hass: HomeAssistant, entry: ConfigEntry) -> bool:
2626
speedport = await Speedport(
2727
host=entry.data["host"],
2828
password=entry.data["password"],
29+
https=entry.data["https"],
2930
session=aiohttp_client.async_get_clientsession(hass),
3031
pause_time=entry.options.get("pause_time", 5),
3132
).create()

0 commit comments

Comments
 (0)