From 66fc4fab7355045bcc6e540a8a34345d913523e7 Mon Sep 17 00:00:00 2001 From: Tim Su Date: Sun, 18 Jan 2009 08:30:43 +0000 Subject: [PATCH] I did not save this file. --- src/com/timsu/astrid/sync/RTMSyncService.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/timsu/astrid/sync/RTMSyncService.java b/src/com/timsu/astrid/sync/RTMSyncService.java index d87487cad..69ed52a25 100644 --- a/src/com/timsu/astrid/sync/RTMSyncService.java +++ b/src/com/timsu/astrid/sync/RTMSyncService.java @@ -279,7 +279,8 @@ public class RTMSyncService extends SynchronizationService { } // notes - if(task.notes != null && task.notes.length() > 0 && !task.equals(remoteTask.notes)) + if(task.notes != null && task.notes.length() > 0 && + !task.notes.equals(remoteTask.notes)) rtmService.tasks_notes_add(timeline, id.listId, id.taskSeriesId, id.taskId, "From Astrid", task.notes);