Fix unmetered upload over cell (fix #23811) (#23820)

old-commit-hash: a6214ff3b1
taco
Robbe Derks 3 years ago committed by GitHub
parent d4db9082db
commit eda2f8c090
  1. 2
      selfdrive/athena/athenad.py

@ -193,7 +193,7 @@ def upload_handler(end_event: threading.Event) -> None:
# Abort transfer if connection changed to cell after starting upload
sm.update(0)
cell = sm['deviceState'].networkType not in [NetworkType.wifi, NetworkType.ethernet]
if cell and (not cur_upload_items[tid].allow_cellular):
if cell and (not cur_upload_items[tid].allow_cellular) and (not cellular_unmetered):
raise AbortTransferException
cur_upload_items[tid] = cur_upload_items[tid]._replace(progress=cur / sz if sz else 1)

Loading…
Cancel
Save