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

Commit 404180e4 authored by Robert Greenwalt's avatar Robert Greenwalt
Browse files

Fix bug in isOperatorConsideredNonRoaming

Mistakenly exits if the first check of many doesn't match.

bug:11136023
Change-Id: I04883d75f32214def360292c90b2f628c4e60991
parent 07a8295c
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1367,8 +1367,6 @@ final class GsmServiceStateTracker extends ServiceStateTracker {
        for (String numeric : numericArray) {
            if (operatorNumeric.startsWith(numeric))
                return true;
            else
                return false;
        }
        return false;
    }