We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 6026113 + 93fb68f commit 3506621Copy full SHA for 3506621
1 file changed
packages/SystemUI/src/com/android/systemui/statusbar/policy/MobileSignalController.java
@@ -25,6 +25,7 @@
25
import android.telephony.SubscriptionInfo;
26
import android.telephony.SubscriptionManager;
27
import android.telephony.TelephonyManager;
28
+import android.text.TextUtils;
29
import android.util.Log;
30
import android.util.SparseArray;
31
@@ -389,7 +390,7 @@ private final void updateTelephony() {
389
390
}
391
// Fill in the network name if we think we have it.
392
if (mCurrentState.networkName == mNetworkNameDefault && mServiceState != null
- && mServiceState.getOperatorAlphaShort() != null) {
393
+ && !TextUtils.isEmpty(mServiceState.getOperatorAlphaShort())) {
394
mCurrentState.networkName = mServiceState.getOperatorAlphaShort();
395
396
0 commit comments