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

Commit e11fcff2 authored by Automerger Merge Worker's avatar Automerger Merge Worker Committed by Android (Google) Code Review
Browse files

Merge "Merge "Add new disconnect cause for satellite enabled" into udc-dev am:...

Merge "Merge "Add new disconnect cause for satellite enabled" into udc-dev am: 65abc7b6 am: 6309a9df am: 5772a059" into udc-qpr-dev-plus-aosp
parents 90c7cc47 efc91fd5
Loading
Loading
Loading
Loading
+167 −160
Original line number Original line Diff line number Diff line
@@ -360,6 +360,11 @@ public final class DisconnectCause {
     */
     */
    public static final int INCOMING_AUTO_REJECTED = 81;
    public static final int INCOMING_AUTO_REJECTED = 81;


    /**
     * Indicates that the call was unable to be made because the satellite modem is enabled.
     * @hide
     */
    public static final int SATELLITE_ENABLED = 82;


    //*********************************************************************************************
    //*********************************************************************************************
    // When adding a disconnect type:
    // When adding a disconnect type:
@@ -539,6 +544,8 @@ public final class DisconnectCause {
                return "OUTGOING_EMERGENCY_CALL_PLACED";
                return "OUTGOING_EMERGENCY_CALL_PLACED";
            case INCOMING_AUTO_REJECTED:
            case INCOMING_AUTO_REJECTED:
                return "INCOMING_AUTO_REJECTED";
                return "INCOMING_AUTO_REJECTED";
            case SATELLITE_ENABLED:
                return "SATELLITE_ENABLED";
            default:
            default:
                return "INVALID: " + cause;
                return "INVALID: " + cause;
        }
        }