We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6feacb3 commit 732fe25Copy full SHA for 732fe25
airos/base.py
@@ -225,7 +225,8 @@ def _store_auth_data(self, response: aiohttp.ClientResponse) -> None:
225
cookie.load(set_cookie)
226
for key, morsel in cookie.items():
227
if key.startswith("AIROS_"):
228
- self._auth_cookie = morsel.key[6:] + "=" + morsel.value
+ # self._auth_cookie = morsel.key[6:] + "=" + morsel.value
229
+ self._auth_cookie = f"{morsel.key}={morsel.value}"
230
break
231
232
async def _request_json(
0 commit comments