From 278aeef86401bf66ead62296fbc4f0d94814ccfd Mon Sep 17 00:00:00 2001 From: Ludovic Marcotte Date: Thu, 22 Dec 2016 08:55:12 -0500 Subject: [PATCH] (fix) disabled IMIP force sending for Lightning (fixes #3274) --- SoObjects/Appointments/SOGoAppointmentObject.m | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/SoObjects/Appointments/SOGoAppointmentObject.m b/SoObjects/Appointments/SOGoAppointmentObject.m index 91e362d00..91b58bc96 100644 --- a/SoObjects/Appointments/SOGoAppointmentObject.m +++ b/SoObjects/Appointments/SOGoAppointmentObject.m @@ -396,6 +396,9 @@ // https://bugzilla.mozilla.org/show_bug.cgi?id=865726 and // https://bugzilla.mozilla.org/show_bug.cgi?id=997784 // + // This code has been disabled - see 0003274. + // +#if 0 userAgents = [[context request] headersForKey: @"User-Agent"]; for (i = 0; i < [userAgents count]; i++) @@ -407,6 +410,7 @@ break; } } +#endif return b; }