Skip to content

Commit

Permalink
fix(main): require auth for xb8
Browse files Browse the repository at this point in the history
  • Loading branch information
sarabveer committed Mar 31, 2024
1 parent 1cd36c0 commit 618ea57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def main():
time.sleep(sleep_interval)
first = False

if config['modem_auth_required'] or modem_model == 's33':
if config['modem_auth_required'] or modem_model == 's33' or modem_model == 'xb8':
while not credential:
credential = get_credential(config)
if not credential and config['exit_on_auth_error']:
Expand Down

0 comments on commit 618ea57

Please sign in to comment.