Skip to content

Commit

Permalink
Fix UIDVALIDITY change detection
Browse files Browse the repository at this point in the history
The 'is_reset' flag was lost during a
INFO -> DEBUG log level change in
commit 3956351

Probably a botched merge since there were
two corrections to this code later on, too.

-> restore it. Originally introduced by bugs.horde.org entry #11807.
  • Loading branch information
thomasjfox authored and mrubinsk committed Nov 24, 2016
1 parent aa173ee commit 521b225
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -262,7 +262,7 @@ public function synchronize($params = array())
'[KOLAB_STORAGE] Complete folder sync: user: %s, folder: %s, is_reset: %d',
$user, $folder_path, $is_reset)
);
$this->_completeSynchronization($current);
$this->_completeSynchronization($current, array('is_reset' => $is_reset));
return;
}

Expand Down

0 comments on commit 521b225

Please sign in to comment.