diff options
| -rw-r--r-- | src/com/android/phone/NotificationMgr.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/com/android/phone/NotificationMgr.java b/src/com/android/phone/NotificationMgr.java index 1012a9e37..f2ff074ef 100644 --- a/src/com/android/phone/NotificationMgr.java +++ b/src/com/android/phone/NotificationMgr.java @@ -642,11 +642,10 @@ public class NotificationMgr { final CharSequence contentText = TextUtils.isEmpty(line1Num) ? String.format(mContext.getText( - R.string.limited_sim_function_notification_message).toString(), - carrierName, line1Num) : + R.string.limited_sim_function_notification_message).toString(), carrierName) : String.format(mContext.getText( R.string.limited_sim_function_with_phone_num_notification_message).toString(), - carrierName); + carrierName, line1Num); final Notification.Builder builder = new Notification.Builder(mContext) .setSmallIcon(R.drawable.ic_sim_card) .setContentTitle(mContext.getText( |
