Fix notif intent issue

This commit is contained in:
Sylvain Berfini 2012-07-09 14:06:01 +02:00
parent fcdc542315
commit 26e17d8120

View file

@ -138,7 +138,7 @@ public final class LinphoneService extends Service implements LinphoneServiceLis
mNotif.iconLevel=IC_LEVEL_ORANGE;
mNotif.flags |= Notification.FLAG_ONGOING_EVENT;
Intent notifIntent = new Intent(this, LinphoneActivity.class);
Intent notifIntent = new Intent(this, incomingReceivedActivity);
mNotifContentIntent = PendingIntent.getActivity(this, 0, notifIntent, 0);
mNotif.setLatestEventInfo(this, mNotificationTitle,"", mNotifContentIntent);