Skip to content

Commit

Permalink
Bug: 14631 Fix undefined property warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed May 5, 2017
1 parent 950fdf0 commit 49553b9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -56,7 +56,7 @@ public function __construct(
// server state and handled by a complete resync, but a majority of
// EAS clients do not properly handle the status codes that report this.
parent::__construct($imap, $status, $folder, $logger);
if ($folder->modseq > $this->_status[Horde_ActiveSync_Folder_Imap::HIGHESTMODSEQ]) {
if ($folder->modseq() > $this->_status[Horde_ActiveSync_Folder_Imap::HIGHESTMODSEQ]) {
$this->_logger->err('IMAP Server error: Current HIGHESTMODSEQ is lower than previously reported.');
$this->_modseq_valid = false;
}
Expand Down

0 comments on commit 49553b9

Please sign in to comment.