Skip to content

Commit

Permalink
iCloud3 v3.0.0, Beta 14a (3/12/2023)
Browse files Browse the repository at this point in the history
  • Loading branch information
gcobb321 committed Mar 12, 2023
1 parent 3c530a5 commit 414896a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 4 additions & 0 deletions custom_components/icloud3/support/pyicloud_ic3.py
Original file line number Diff line number Diff line change
Expand Up @@ -898,6 +898,8 @@ def _check_2sa_needed(self):

return needs_2sa_flag

except AttributeError:
return False
except:
return False

Expand All @@ -908,6 +910,8 @@ def _check_2fa_needed(self):
needs_2fa_flag = (self.data.get("dsInfo", {}).get("hsaVersion", 0) == 2
and (self.is_challenge_required or self.is_trusted_browser is False))

except AttributeError:
return False
except Exception as err:
log_exception(err)
return False
Expand Down
1 change: 0 additions & 1 deletion custom_components/icloud3/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@
"opt_action": "═════════════════════════════════════════════════════"
},
"data_description": {
"zone_sensor_evlog_format": "The HA entity value standard is to display the state value in lower_case with underscores ('_'). This overides that standard and displays the Zone Name Format selected above"
}
},
"display_text_as": {
Expand Down

0 comments on commit 414896a

Please sign in to comment.