From f963d5f6108cd0df34321d4e9814ac404c743de0 Mon Sep 17 00:00:00 2001 From: Sam Bosley Date: Wed, 11 Apr 2012 14:37:28 -0700 Subject: [PATCH] Fixed bugs with reminder dialog not working --- .../com/todoroo/astrid/reminders/NotificationFragment.java | 1 + 1 file changed, 1 insertion(+) diff --git a/astrid/plugin-src/com/todoroo/astrid/reminders/NotificationFragment.java b/astrid/plugin-src/com/todoroo/astrid/reminders/NotificationFragment.java index 4e0b42da5..74552f416 100644 --- a/astrid/plugin-src/com/todoroo/astrid/reminders/NotificationFragment.java +++ b/astrid/plugin-src/com/todoroo/astrid/reminders/NotificationFragment.java @@ -103,6 +103,7 @@ public class NotificationFragment extends TaskListFragment implements OnTimeSetL getView().findViewById(R.id.taskListFooter).setVisibility(View.GONE); String title = extras.getString(Notifications.EXTRAS_TEXT); + taskId = extras.getLong(TOKEN_ID); new ReminderDialog((AstridActivity) getActivity(), taskId, title).show(); }