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

Commit b7ee7527 authored by Calvin Pan's avatar Calvin Pan Committed by android-build-merger
Browse files

Merge "Get the resources associated with subid to support MSIM" into qt-dev...

Merge "Get the resources associated with subid to support MSIM" into qt-dev am: 261b3b13 am: 39191756
am: 1a114465

Change-Id: I56f6661ce25bc94a6f5eda3bf9718806c728b6da
parents 3130ac40 1a114465
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -5253,7 +5253,7 @@ public class TelephonyManager {
     */
    public String getMmsUserAgent() {
        if (mContext == null) return null;
        return mContext.getResources().getString(
        return SubscriptionManager.getResourcesForSubId(mContext, getSubId()).getString(
                com.android.internal.R.string.config_mms_user_agent);
    }

@@ -5262,7 +5262,7 @@ public class TelephonyManager {
     */
    public String getMmsUAProfUrl() {
        if (mContext == null) return null;
        return mContext.getResources().getString(
        return SubscriptionManager.getResourcesForSubId(mContext, getSubId()).getString(
                com.android.internal.R.string.config_mms_user_agent_profile_url);
    }