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

Commit 642daafd 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 am: 136c475d

am: a2e4e153

Change-Id: Ie77c5dcb32f501bf72fafbd4835ad18ab35841f3
parents 4193d0e1 a2e4e153
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;
        }