We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07cef03 commit 9fc3847Copy full SHA for 9fc3847
roborock/web_api.py
@@ -359,6 +359,10 @@ async def code_login_v4(
359
raise RoborockInvalidUserAgreement(
360
"User agreement must be accepted again - or you are attempting to use the Mi Home app account."
361
)
362
+ if response_code == 3039:
363
+ raise RoborockAccountDoesNotExist(
364
+ "This code does not exists - please ensure that you selected the right region and email."
365
+ )
366
raise RoborockException(f"{login_response.get('msg')} - response code: {response_code}")
367
user_data = login_response.get("data")
368
if not isinstance(user_data, dict):
0 commit comments