Skip to content

Commit

Permalink
Removed the login again.
Browse files Browse the repository at this point in the history
  • Loading branch information
guerrerotook committed May 11, 2024
1 parent 8d52216 commit 4b6b66d
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,11 @@ async def _execute_request(
_LOGGER.debug(response_text)

try:
error_login: bool = await self._check_errros(response_text)
if error_login:
return await self._execute_request(content, operation, installation)
# error_login: bool = await self._check_errros(response_text)
# if error_login:
response_text: str = await self._execute_request(
content, operation, installation
)
response_dict = json.loads(response_text)
except json.JSONDecodeError as err:
_LOGGER.error("Problems decoding response %s", response_text)
Expand Down

0 comments on commit 4b6b66d

Please sign in to comment.