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

Commit 77f615f2 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Check for sub count > 1 to check for multiple active subs (not > 0)." into qt-qpr1-dev

parents 45877773 86ffe438
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -400,7 +400,7 @@ public class SmsController extends ISmsImplBase {
            }

            // If reached here and multiple SIMs and subs present, sms sim pick activity is needed
            if (subInfoLength > 0 && telephonyManager.getSimCount() > 1) {
            if (subInfoLength > 1 && telephonyManager.getSimCount() > 1) {
                return true;
            }
        }