Fixed that Call back function didn't work

Call back function on missed call notification didn't work after
switching user from gust to owner. Because UserHandle was saved in
extra when creating the pending intent and it was previous one after
switching user to owner. Fixed to use FLAG_CANCEL_CURRENT.

Test: manual
Bug: 32231072
Change-Id: Id960a963278b304d91c8f236e33ca697fee2fcb9
diff --git a/src/com/android/server/telecom/ui/MissedCallNotifierImpl.java b/src/com/android/server/telecom/ui/MissedCallNotifierImpl.java
index 2bc1e2b..67fe2b2 100644
--- a/src/com/android/server/telecom/ui/MissedCallNotifierImpl.java
+++ b/src/com/android/server/telecom/ui/MissedCallNotifierImpl.java
@@ -542,7 +542,7 @@
             UserHandle userHandle) {
         Intent intent = new Intent(action, data, mContext, TelecomBroadcastReceiver.class);
         intent.putExtra(TelecomBroadcastIntentProcessor.EXTRA_USERHANDLE, userHandle);
-        return PendingIntent.getBroadcast(mContext, 0, intent, 0);
+        return PendingIntent.getBroadcast(mContext, 0, intent, PendingIntent.FLAG_CANCEL_CURRENT);
     }
 
     /**