diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-08-03 16:59:29 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2005-08-03 16:59:29 +0800 |
commit | 888a7229872d0b4a8574cfc69ed007727530cb96 (patch) | |
tree | 5e22a85bb92759525ff9d2784d1f7885613863ee /calendar/gui/itip-utils.c | |
parent | 0c08ef49299caf0e6ae997451ba7a2d923931c42 (diff) | |
download | gsoc2013-evolution-888a7229872d0b4a8574cfc69ed007727530cb96.tar.gz gsoc2013-evolution-888a7229872d0b4a8574cfc69ed007727530cb96.tar.zst gsoc2013-evolution-888a7229872d0b4a8574cfc69ed007727530cb96.zip |
Fixes #309601
svn path=/trunk/; revision=29968
Diffstat (limited to 'calendar/gui/itip-utils.c')
-rw-r--r-- | calendar/gui/itip-utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/itip-utils.c b/calendar/gui/itip-utils.c index 2f4ca34c8b..641bdc45d5 100644 --- a/calendar/gui/itip-utils.c +++ b/calendar/gui/itip-utils.c @@ -93,7 +93,7 @@ itip_organizer_is_user (ECalComponent *comp, ECal *client) const char *strip; gboolean user_org = FALSE; - if (!e_cal_component_has_organizer (comp)) + if (!e_cal_component_has_organizer (comp) || e_cal_get_static_capability (client, CAL_STATIC_CAPABILITY_NO_ORGANIZER)) return FALSE; e_cal_component_get_organizer (comp, &organizer); |