use unknown networkstrength, not none (#1222)

albatross
Andrew Valish 2020-03-09 10:48:28 -07:00 committed by GitHub
parent fe911bcca8
commit d161584f99
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ def get_network_strength(network_type):
return network_strength
if network_type == NetworkType.wifi:
out = subprocess.check_output('dumpsys connectivity', shell=True).decode('ascii')
network_strength = NetworkStrength.none
network_strength = NetworkStrength.unknown
for line in out.split('\n'):
if "SignalStrength" in line:
arr = line.split(' ')