Telephony: Fix changed API
Follow-up to commit 0a05b65723a8a5baef58b9658772fdecbff6aa4a.
Internal API was changed in 7ea3e8bf8954343d7b243b6a23bcb8339921f3c8,
Change-Id: I0e8c2d929817b0932b60883ea4aa18c08c10e2a5
(cherry picked from commit 7de83afa0b6d1fc7c2a0ace885e65b82f38b1276)
diff --git a/src/com/android/phone/PhoneGlobals.java b/src/com/android/phone/PhoneGlobals.java
index 89f5d23..ba7251f 100644
--- a/src/com/android/phone/PhoneGlobals.java
+++ b/src/com/android/phone/PhoneGlobals.java
@@ -689,7 +689,7 @@
PhoneFactory.getPhone(phoneId) : PhoneFactory.getDefaultPhone();
// If not default data subscription, ignore the broadcast intent and avoid action.
- if (subId != SubscriptionManager.getDefaultDataSubId()) {
+ if (subId != SubscriptionManager.getDefaultDataSubscriptionId()) {
if (VDBG) Log.d(LOG_TAG, "Ignore broadcast intent as not default data sub.");
return;
}