Skip to content

Commit

Permalink
Fix assigning cookies to wrong variable
Browse files Browse the repository at this point in the history
  • Loading branch information
danieldotnl committed May 11, 2024
1 parent 9774700 commit 8f2a31a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion custom_components/multiscrape/coordinator.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ async def get_content(self) -> str:
ex,
)

response = await self._http.async_request("page", resource, self._cookies)
response = await self._http.async_request("page", resource, cookies=self._cookies)
return response.text


Expand Down

0 comments on commit 8f2a31a

Please sign in to comment.