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

Unverified Commit 217cc7cf authored by Willi Ye's avatar Willi Ye Committed by Michael Bestas
Browse files

SubscriptionController: Make sure cis are not null

Change-Id: I3793eda58eddfcbd826d602757db4798133c3a27
parent dac1081e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1514,7 +1514,7 @@ public class SubscriptionController extends ISub.Stub {
    }

    private boolean needsSim2gsmOnly() {
        if (sCommandsInterfaces[0] instanceof RIL) {
        if (sCommandsInterfaces != null && sCommandsInterfaces[0] instanceof RIL) {
            return ((RIL) sCommandsInterfaces[0]).needsOldRilFeature("sim2gsmonly");
        }
        return false;