diff --git a/apps/dav/lib/CardDAV/SyncService.php b/apps/dav/lib/CardDAV/SyncService.php index 38c2cef83a58d..793c43ecd0854 100644 --- a/apps/dav/lib/CardDAV/SyncService.php +++ b/apps/dav/lib/CardDAV/SyncService.php @@ -152,7 +152,12 @@ public function updateUser(IUser $user): void { if (is_null($vCard)) { $this->backend->deleteCard($addressBookId, $cardId); } else { - $this->backend->updateCard($addressBookId, $cardId, $vCard->serialize()); + $cardData = $vCard->serialize(); + // Writing an identical card would still bump the address book + // sync token and make every client re-download the card + if ($card['carddata'] !== $cardData) { + $this->backend->updateCard($addressBookId, $cardId, $cardData); + } } } }, $this->dbConnection);