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

Commit 136c475d authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Merge "Fix dial emergency call redial issue by China Unicom."

am: 3ab81b96

Change-Id: I3895caab83c75a8f0d0251da6154d5a93fe09694
parents 6519e65e 3ab81b96
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -273,6 +273,13 @@ public class DisconnectCause {
     * {@hide}
     */
    public static final int EMERGENCY_PERM_FAILURE = 64;

    /**
     * This cause is used to report a normal event only when no other cause in the normal class
     * applies.
     * {@hide}
     */
    public static final int NORMAL_UNSPECIFIED = 65;
    //*********************************************************************************************
    // When adding a disconnect type:
    // 1) Update toString() with the newly added disconnect type.
@@ -413,6 +420,8 @@ public class DisconnectCause {
            return "EMERGENCY_TEMP_FAILURE";
        case EMERGENCY_PERM_FAILURE:
            return "EMERGENCY_PERM_FAILURE";
        case NORMAL_UNSPECIFIED:
            return "NORMAL_UNSPECIFIED";
        default:
            return "INVALID: " + cause;
        }