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

Commit 77c7d8ea authored by Nathan Harold's avatar Nathan Harold Committed by Automerger Merge Worker
Browse files

Merge "Correct comparison for hasBandwidthChanged" am: 7254eeb8

parents ff4f68ec 7254eeb8
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -3551,7 +3551,8 @@ public class ServiceStateTracker extends Handler {

        boolean hasCssIndicatorChanged = (mSS.getCssIndicator() != mNewSS.getCssIndicator());

        boolean hasBandwidthChanged = mSS.getCellBandwidths() != mNewSS.getCellBandwidths();
        boolean hasBandwidthChanged = !Arrays.equals(
                mSS.getCellBandwidths(), mNewSS.getCellBandwidths());

        boolean has4gHandoff = false;
        boolean hasMultiApnSupport = false;