mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
Fix an issue where internal Calendar DateTimes would not be correctly set to all-day
Summary: Ref T11816. I don't really know what happened here, maybe I rewrote and broke this at the last second? In most cases, we directly respect the `isAllDay` flag on the event, so the internal date state doesn't matter too much. However, in the case of mail notifications, the raw internal state is relevant. This should fix mail notifications for all-day events. (I might still turn them off since I'm not sure they're too useful, but it's good to have them working.) Test Plan: - Created a new all-day event, verified database values wrote correctly. - Ran `bin/calendar notify --trace`, verified it picked up an all-day event tomorrow with a large enough `--minutes` value. Reviewers: chad Reviewed By: chad Maniphest Tasks: T11816 Differential Revision: https://secure.phabricator.com/D16954
This commit is contained in:
parent
3edd01bc0f
commit
c5162074a1
1 changed files with 1 additions and 1 deletions
|
@ -55,7 +55,7 @@ final class PhabricatorCalendarEventEditor
|
|||
if ($xaction->getTransactionType() != $type_allday) {
|
||||
continue;
|
||||
}
|
||||
$target_alllday = (bool)$xaction->getNewValue();
|
||||
$new_allday = (bool)$xaction->getNewValue();
|
||||
}
|
||||
|
||||
$this->oldIsAllDay = $old_allday;
|
||||
|
|
Loading…
Reference in a new issue