From 23a01ff845f544f379e2a16240a8be7518404d84 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Thu, 3 May 2012 11:14:21 -0700 Subject: [PATCH] Fixed a bug where notification titles wouldn't work with swipe turned off --- .../plugin-src/com/todoroo/astrid/reminders/Notifications.java | 1 + 1 file changed, 1 insertion(+) diff --git a/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java b/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java index 2cf63655c..46133eb36 100644 --- a/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java +++ b/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java @@ -200,6 +200,7 @@ public class Notifications extends BroadcastReceiver { notifyIntent.setAction("NOTIFY" + id); //$NON-NLS-1$ notifyIntent.putExtra(TaskListFragment.TOKEN_FILTER, itemFilter); notifyIntent.putExtra(NotificationFragment.TOKEN_ID, id); + notifyIntent.putExtra(EXTRAS_TEXT, text); notifyIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_MULTIPLE_TASK); notifyIntent.putExtra(TaskListActivity.TOKEN_SOURCE, Constants.SOURCE_NOTIFICATION);