[evolution-data-server/gnome-3-30] I#81 - Pops up a reminder of a deleted instance of a recurring event



commit 309ffb448ffd73fa60f502af8871ec5cc37c1343
Author: Milan Crha <mcrha redhat com>
Date:   Tue Jan 29 17:33:55 2019 +0100

    I#81 - Pops up a reminder of a deleted instance of a recurring event
    
    Related to https://gitlab.gnome.org/GNOME/evolution-data-server/issues/81

 src/calendar/libecal/e-reminder-watcher.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
---
diff --git a/src/calendar/libecal/e-reminder-watcher.c b/src/calendar/libecal/e-reminder-watcher.c
index f03bf31e0..79a07d619 100644
--- a/src/calendar/libecal/e-reminder-watcher.c
+++ b/src/calendar/libecal/e-reminder-watcher.c
@@ -656,7 +656,7 @@ match_not_component_id_cb (gpointer data,
                return FALSE;
 
        rd_id = e_cal_component_get_id (rd->component);
-       match = rd_id && e_cal_component_id_equal (rd_id, id);
+       match = rd_id && g_strcmp0 (rd_id->uid, id->uid) == 0;
        e_cal_component_free_id (rd_id);
 
        return !match;


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]