Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Sync all users to the system addresssbook
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen committed Oct 6, 2020
commit c255dd360677ee623b5bf3d9a9434d27963b9933
2 changes: 1 addition & 1 deletion apps/dav/lib/CardDAV/SyncService.php
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public function getLocalSystemAddressBook() {

public function syncInstance(\Closure $progressCallback = null) {
$systemAddressBook = $this->getLocalSystemAddressBook();
$this->userManager->callForSeenUsers(function($user) use ($systemAddressBook, $progressCallback) {
$this->userManager->callForAllUsers(function($user) use ($progressCallback) {
$this->updateUser($user);
if (!is_null($progressCallback)) {
$progressCallback();
Expand Down