Skip to content

Commit 171f7c5

Browse files
authored
Fix cookies with aiohttp >= 3.12.7 for Vodafone Station (home-assistant#146647)
1 parent 8807c53 commit 171f7c5

File tree

1 file changed

+1
-1
lines changed
  • homeassistant/components/vodafone_station

1 file changed

+1
-1
lines changed

homeassistant/components/vodafone_station/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
async def async_client_session(hass: HomeAssistant) -> ClientSession:
1010
"""Return a new aiohttp session."""
1111
return aiohttp_client.async_create_clientsession(
12-
hass, verify_ssl=False, cookie_jar=CookieJar(unsafe=True)
12+
hass, verify_ssl=False, cookie_jar=CookieJar(unsafe=True, quote_cookie=False)
1313
)

0 commit comments

Comments
 (0)