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

Commit d7769ad1 authored by Aishwarya Mallampati's avatar Aishwarya Mallampati
Browse files

Do not show satellite messaging in sim settings if sms is not supported

Bug: 393181741
Test: 393186308
Flag: EXEMPT bugfix
Change-Id: I1cb1d22541ba68ce20a0fd9319ddb2d5fc5d6715
parent 3114fdfa
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -95,7 +95,13 @@ public class SatelliteSettingPreferenceController extends
            return UNSUPPORTED_ON_DEVICE;
        }

        return mIsCarrierSatelliteAttachSupported ? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
        int availabilityStatus = mIsCarrierSatelliteAttachSupported
                ? AVAILABLE : CONDITIONALLY_UNAVAILABLE;
        if (availabilityStatus == AVAILABLE && mIsCarrierRoamingNtnConnectedTypeManual
                && !mIsSatelliteSmsAvailableForManualType) {
            availabilityStatus = CONDITIONALLY_UNAVAILABLE;
        }
        return availabilityStatus;
    }

    @Override