Skip to content
This repository was archived by the owner on Jul 1, 2023. It is now read-only.

Commit 5049bea

Browse files
authored
Actually fix config flow (#26)
1 parent b15a6b7 commit 5049bea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

custom_components/fullykiosk/config_flow.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ async def authenticate(self, username, password) -> bool:
4646

4747
async def validate_input(hass: core.HomeAssistant, data):
4848
"""Validate the user input allows us to connect."""
49-
session = async_get_clientsession()
49+
session = async_get_clientsession(hass)
5050
fully = FullyKiosk(session, data["host"], data["port"], data["password"])
5151

5252
try:

0 commit comments

Comments
 (0)