Skip to content

Commit 78373a6

Browse files
erwindounabramkragten
authored andcommitted
Firefly fix config flow (#155503)
1 parent 8455c35 commit 78373a6

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

homeassistant/components/firefly_iii/config_flow.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,9 @@ async def _validate_input(hass: HomeAssistant, data: dict[str, Any]) -> bool:
4040
client = Firefly(
4141
api_url=data[CONF_URL],
4242
api_key=data[CONF_API_KEY],
43-
session=async_get_clientsession(hass),
43+
session=async_get_clientsession(
44+
hass=hass, verify_ssl=data[CONF_VERIFY_SSL]
45+
),
4446
)
4547
await client.get_about()
4648
except FireflyAuthenticationError:

0 commit comments

Comments
 (0)