fix offset is never being reset
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
This commit is contained in:
parent
82da4fde18
commit
a565bf0b9f
|
@ -179,7 +179,7 @@ class Sync extends TimedJob {
|
|||
if($connection->ldapPagingSize === 0) {
|
||||
return true;
|
||||
}
|
||||
return count($results) !== $connection->ldapPagingSize;
|
||||
return count($results) >= $connection->ldapPagingSize;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue