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

Commit ece22ce7 authored by Santos Cordon's avatar Santos Cordon Committed by Gerrit Code Review
Browse files

Merge "Fix bug in CallManager unregisterForPhoneStates()"

parents 78232be3 c2b8480b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -677,7 +677,7 @@ public final class CallManager {
    private void unregisterForPhoneStates(Phone phone) {
        // Make sure that we clean up our map of handlers to Phones.
        CallManagerHandler handler = mHandlerMap.get(phone);
        if (handler != null) {
        if (handler == null) {
            Rlog.e(LOG_TAG, "Could not find Phone handler for unregistration");
            return;
        }