1
0
Fork 0
mirror of https://github.com/borgbase/vorta synced 2024-12-21 23:33:13 +00:00

Avoid checking for metered network, if there is no wifi (#2141)

This commit is contained in:
Manu 2024-11-18 14:05:35 +00:00 committed by GitHub
parent 6bec467e44
commit 64586dff07
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -11,6 +11,11 @@
class DarwinNetworkStatus(NetworkStatusMonitor):
def is_network_metered(self) -> bool:
interface: CWInterface = self._get_wifi_interface()
# If there is no Wifi at all.
if interface is None:
return False
network: Optional[CWNetwork] = interface.lastNetworkJoined()
if network: