Loading src/com/android/server/telecom/ui/MissedCallNotifierImpl.java +9 −2 Original line number Diff line number Diff line Loading @@ -164,9 +164,16 @@ public class MissedCallNotifierImpl extends CallsManagerListenerBase implements intent.putExtra(TelecomManager.EXTRA_CLEAR_MISSED_CALLS_INTENT, createClearMissedCallsPendingIntent()); if (count == 1 && call != null) { final Uri handleUri = call.getHandle(); String handle = handleUri == null ? null : handleUri.getSchemeSpecificPart(); if (!TextUtils.isEmpty(handle) && !TextUtils.equals(handle, mContext.getString(R.string.handle_restricted))) { intent.putExtra(TelecomManager.EXTRA_CALL_BACK_INTENT, createCallBackPendingIntent(call.getHandle())); createCallBackPendingIntent(handleUri)); } } mContext.sendBroadcast(intent); Loading Loading
src/com/android/server/telecom/ui/MissedCallNotifierImpl.java +9 −2 Original line number Diff line number Diff line Loading @@ -164,9 +164,16 @@ public class MissedCallNotifierImpl extends CallsManagerListenerBase implements intent.putExtra(TelecomManager.EXTRA_CLEAR_MISSED_CALLS_INTENT, createClearMissedCallsPendingIntent()); if (count == 1 && call != null) { final Uri handleUri = call.getHandle(); String handle = handleUri == null ? null : handleUri.getSchemeSpecificPart(); if (!TextUtils.isEmpty(handle) && !TextUtils.equals(handle, mContext.getString(R.string.handle_restricted))) { intent.putExtra(TelecomManager.EXTRA_CALL_BACK_INTENT, createCallBackPendingIntent(call.getHandle())); createCallBackPendingIntent(handleUri)); } } mContext.sendBroadcast(intent); Loading