We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2daf9dc + 0ae2927 commit 3ee47aeCopy full SHA for 3ee47ae
packages/SystemUI/src/com/android/systemui/statusbar/policy/NetworkController.java
@@ -932,10 +932,12 @@ void refreshViews() {
932
933
if (mDataConnected) {
934
mobileLabel = mNetworkName;
935
- } else if (mConnected) {
936
- if (hasService()) {
+ } else if (mConnected || mServiceState.isEmergencyOnly()) {
+ if (hasService() || mServiceState.isEmergencyOnly()) {
937
+ // The isEmergencyOnly test covers the case of a phone with no SIM
938
939
} else {
940
+ // Tablets, basically
941
mobileLabel = "";
942
}
943
0 commit comments