Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit caa7eddb authored by Arne Coucheron's avatar Arne Coucheron Committed by Zhao Wei Liew
Browse files

Revert "SystemUI: Fix systemui FC issue"

This reverts commit 8d2641da.

Change-Id: I3db45b3666e6628974f859f0af58687153de1654
parent 55bcdc76
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -431,10 +431,10 @@ public class MobileSignalController extends SignalController<
            mCurrentState.networkName = mServiceState.getOperatorAlphaShort();
        }

        if (!showLongOperatorName() && mServiceState != null && !TextUtils.isEmpty(
                mServiceState.getOperatorAlphaShort())) {
            mCurrentState.networkNameData = mServiceState.getOperatorAlphaShort()
                            + " " + getNetworkClassString(mServiceState);
        if (!showLongOperatorName()) {
            mCurrentState.networkNameData = TextUtils.isEmpty(mServiceState.
                    getOperatorAlphaShort()) ? mCurrentState.networkNameData : mServiceState.
                    getOperatorAlphaShort() + " " + getNetworkClassString(mServiceState);
        }

        notifyListenersIfNecessary();