Skip to content

Commit e8e9859

Browse files
committed
Merge pull request #47 from Leanplum/feature/fix-LP-4684
fix(LocalPush): fix for locally triggered notifications appear after…
1 parent d6ca04d commit e8e9859

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

AndroidSDK/src/com/leanplum/internal/ActionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ public boolean onResponse(ActionContext actionContext) {
240240
}
241241

242242
// Cancel notification.
243-
Intent intentAlarm = new Intent(context, LeanplumPushService.class);
243+
Intent intentAlarm = new Intent(context, LeanplumLocalPushListenerService.class);
244244
AlarmManager alarmManager = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
245245
PendingIntent existingIntent = PendingIntent.getService(
246246
context, messageId.hashCode(), intentAlarm, PendingIntent.FLAG_UPDATE_CURRENT);

0 commit comments

Comments
 (0)