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

Commit 47222c0b authored by Hall Liu's avatar Hall Liu
Browse files

Fix comparison bug in InCallServiceInfo

Test: CTS
Change-Id: Id284345b13874da777e7ff29d80a8ad51cb01623
parent 18f843be
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);