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

old-commit-hash: a6214ff3b10114f727c9ec89dfa0ac275979f62f
This commit is contained in:
Robbe Derks
2022-02-22 13:01:53 +01:00
committed by GitHub
parent d4db9082db
commit eda2f8c090
+1 -1
View File
@@ -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)