Skip to content

Commit

Permalink
This is only supported with MODSEQ servers.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jan 8, 2015
1 parent 656e967 commit 3c32e82
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/ActiveSync/lib/Horde/ActiveSync/Imap/Adapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ public function getMessageChanges(
$flags = array();
$categories = array();
$modseq = $status[Horde_ActiveSync_Folder_Imap::HIGHESTMODSEQ];
if (($modseq && $folder->modseq() > 0 && $folder->modseq() < $modseq) || !empty($options['softdelete'])) {
if ($modseq && $folder->modseq() > 0 && ($folder->modseq() < $modseq) || !empty($options['softdelete'])) {
$this->_logger->info(sprintf(
'[%s] CONDSTORE and CHANGES', $this->_procid));
$folder->checkValidity($status);
Expand Down

0 comments on commit 3c32e82

Please sign in to comment.