From 204a62aa6ac8feb5a13d5a2ee162bb26cc495a50 Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Tue, 23 Dec 2014 10:25:53 -0500 Subject: [PATCH] Improved comments in the code --- SoObjects/Appointments/SOGoAppointmentFolder.m | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/SoObjects/Appointments/SOGoAppointmentFolder.m b/SoObjects/Appointments/SOGoAppointmentFolder.m index ccc98a9dc..c3e29c9ca 100644 --- a/SoObjects/Appointments/SOGoAppointmentFolder.m +++ b/SoObjects/Appointments/SOGoAppointmentFolder.m @@ -511,7 +511,7 @@ static Class iCalEventK = nil; if ([self isSubscription]) { - // If the user has not yet set an include/not include fb information... + // If the user has not yet set an include/not include fb information let's EXCLUDE it. if (!excludeFromFreeBusy) return NO; else @@ -519,12 +519,14 @@ static Class iCalEventK = nil; } else if (is_owner) { + // We are the owner but we haven't included/excluded freebusy info, let's INCLUDE it. if (!excludeFromFreeBusy) return YES; else return ![excludeFromFreeBusy boolValue]; } - + + // It's not a subscribtion and we aren't the owner. Let's INCLUDE the freebusy info. return YES; }