From 969472bdf9d753b769467eb820f6e0c12a2e64c5 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Tue, 24 Aug 2010 17:35:06 -0700 Subject: [PATCH] wasn't able to set lastNotified previously, now we do a better job of it --- .../plugin-src/com/todoroo/astrid/reminders/Notifications.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java b/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java index d7594a175..7a08c14e2 100644 --- a/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java +++ b/astrid/plugin-src/com/todoroo/astrid/reminders/Notifications.java @@ -112,7 +112,7 @@ public class Notifications extends BroadcastReceiver { public boolean showTaskNotification(long id, int type, String reminder) { Task task; try { - task = taskDao.fetch(id, Task.TITLE, Task.HIDE_UNTIL, Task.COMPLETION_DATE, + task = taskDao.fetch(id, Task.ID, Task.TITLE, Task.HIDE_UNTIL, Task.COMPLETION_DATE, Task.DELETION_DATE, Task.REMINDER_FLAGS); if(task == null) throw new IllegalArgumentException("cound not find item with id"); //$NON-NLS-1$