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

Commit 28532678 authored by Sailesh Nepal's avatar Sailesh Nepal Committed by Android Git Automerger
Browse files

am 86f939e8: Merge "Include code when converting unknown causes to string" into lmp-dev

* commit '86f939e832c257b5fa2606aed00e9dfaeaef90cd':
  Include code when converting unknown causes to string
parents 0d336ccc b1814922
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;
        }
    }
}