Fix comparison bug in InCallServiceInfo

Test: CTS
Change-Id: Id284345b13874da777e7ff29d80a8ad51cb01623
diff --git a/src/com/android/server/telecom/InCallController.java b/src/com/android/server/telecom/InCallController.java
index a04be4d..e575097 100644
--- a/src/com/android/server/telecom/InCallController.java
+++ b/src/com/android/server/telecom/InCallController.java
@@ -126,7 +126,7 @@
             if (mIsExternalCallsSupported != that.mIsExternalCallsSupported) {
                 return false;
             }
-            if (mIsSelfManagedCallsSupported != that.mIsExternalCallsSupported) {
+            if (mIsSelfManagedCallsSupported != that.mIsSelfManagedCallsSupported) {
                 return false;
             }
             return mComponentName.equals(that.mComponentName);