From f67e304caf20780881da44c2a89ebbe9e207b2ef Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Wed, 25 May 2022 16:57:48 -0400 Subject: [PATCH] chore(tool): respect start time of auto reply when start date is today --- Tools/SOGoToolUpdateAutoReply.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Tools/SOGoToolUpdateAutoReply.m b/Tools/SOGoToolUpdateAutoReply.m index aa7a3377e..6c620aa90 100644 --- a/Tools/SOGoToolUpdateAutoReply.m +++ b/Tools/SOGoToolUpdateAutoReply.m @@ -161,7 +161,7 @@ [endDate compare: now] == NSOrderedAscending) { if ([startDate compare: endDate] == NSOrderedAscending || - !(result & enableAutoReply)) + (result != temporarilyEnableAutoReply)) result = temporarilyDisableAutoReply; } }