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

Commit 7f466574 authored by Sailesh Nepal's avatar Sailesh Nepal Committed by Jay Shrauner
Browse files

Include code when converting unknown causes to string

Bug: 17535687
Bug: 17241433
Change-Id: I12f0c3b4334dfcb5ac0cd2439ecab9dc77546680
parent 60353798
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -263,7 +263,7 @@ public class DisconnectCause {
        case OUTGOING_CANCELED:
            return "OUTGOING_CANCELED";
        default:
            return "INVALID";
            return "INVALID: " + cause;
        }
    }
}