update athenad.py

v0.7.1
Willem Melching 2020-01-21 12:16:32 -08:00
parent 67ab1c5b2e
commit 1e1de64a1e
1 changed files with 2 additions and 2 deletions

View File

@ -204,8 +204,8 @@ def getSimInfo():
network_type = android.getprop("gsm.network.type").split(',')
mcc_mnc = android.getprop("gsm.sim.operator.numeric") or None
sim_id = android.parse_service_call_string(['iphonesubinfo', '11'])
cell_data_state = android.parse_service_call_unpack(['phone', '46'], ">q")
sim_id = android.parse_service_call_string(android.service_call(['iphonesubinfo', '11']))
cell_data_state = android.parse_service_call_unpack(android.service_call(['phone', '46']), ">q")
cell_data_connected = (cell_data_state == 2)
return {