mirror of
https://github.com/home-assistant/core.git
synced 2025-07-16 09:47:13 +00:00
Fix cookies with aiohttp >= 3.12.7 for Vodafone Station (#146647)
This commit is contained in:
parent
8807c530a9
commit
171f7c5f81
@ -9,5 +9,5 @@ from homeassistant.helpers import aiohttp_client
|
||||
async def async_client_session(hass: HomeAssistant) -> ClientSession:
|
||||
"""Return a new aiohttp session."""
|
||||
return aiohttp_client.async_create_clientsession(
|
||||
hass, verify_ssl=False, cookie_jar=CookieJar(unsafe=True)
|
||||
hass, verify_ssl=False, cookie_jar=CookieJar(unsafe=True, quote_cookie=False)
|
||||
)
|
||||
|
Loading…
x
Reference in New Issue
Block a user