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

Commit 10197de5 authored by Hall Liu's avatar Hall Liu Committed by android-build-merger
Browse files

Merge "Fix comparison bug in InCallServiceInfo"

am: 5ce1a784

Change-Id: I88b2174502e6917e54c176c014425e297dddec31
parents 999194b2 5ce1a784
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ public final class InCallController extends CallsManagerListenerBase {
            if (mIsExternalCallsSupported != that.mIsExternalCallsSupported) {
                return false;
            }
            if (mIsSelfManagedCallsSupported != that.mIsExternalCallsSupported) {
            if (mIsSelfManagedCallsSupported != that.mIsSelfManagedCallsSupported) {
                return false;
            }
            return mComponentName.equals(that.mComponentName);