Commit 746e32b8 authored by Etan Cohen's avatar Etan Cohen Committed by Android Git Automerger
Browse files

am 5cb43e44: Suport IMS services (SRLTE and non-SRLTE)

* commit '5cb43e44':
  Suport IMS services (SRLTE and non-SRLTE)
parents 19f39cfb 5cb43e44
......@@ -186,7 +186,9 @@ public class TelephonyConnectionService extends ConnectionService {
// when voice RAT is OOS but Data RAT is present.
int state = phone.getServiceState().getState();
if (state == ServiceState.STATE_OUT_OF_SERVICE) {
state = phone.getServiceState().getDataRegState();
if (phone.getServiceState().getDataNetworkType() == TelephonyManager.NETWORK_TYPE_LTE) {
state = phone.getServiceState().getDataRegState();
}
}
boolean useEmergencyCallHelper = false;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment