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

Commit 89b5c538 authored by Hui Wang's avatar Hui Wang Committed by Automerger Merge Worker
Browse files

Merge "Process rcsVolteSingleRegistration if it is not provided or roaming"...

Merge "Process rcsVolteSingleRegistration if it is not provided or roaming" into sc-dev am: 4769fd36 am: 1e2a9584

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/14444741

Change-Id: I6c52254b3a531cf7ecf6e8252fbbb9ad8f883e63
parents 00d7a216 1e2a9584
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -357,9 +357,9 @@ public final class RcsConfig {
    /**
    /**
     * Check whether Rcs Volte single registration is supported by the config.
     * Check whether Rcs Volte single registration is supported by the config.
     */
     */
    public boolean isRcsVolteSingleRegistrationSupported() {
    public boolean isRcsVolteSingleRegistrationSupported(boolean isRoaming) {
        return getBoolean(PARM_SINGLE_REGISTRATION, false)
        int val = getInteger(PARM_SINGLE_REGISTRATION, 1);
                || getInteger(PARM_SINGLE_REGISTRATION, 0) != 0;
        return isRoaming ? val == 1 : val > 0;
    }
    }


    @Override
    @Override