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
ignore exception to fulfill group sync
Signed-off-by: Maxence Lange <[email protected]>
  • Loading branch information
ArtificialOwl authored and backportbot[bot] committed Jan 6, 2022
commit 2f322a0f234c0720b94e6848ef0657c70109360b
6 changes: 5 additions & 1 deletion lib/Service/SyncService.php
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,11 @@ public function syncNextcloudGroup(string $groupId): Circle {
$event = new FederatedEvent(SingleMemberAdd::class);
$event->setCircle($circle);
$event->setMember($member);
$this->federatedEventService->newEvent($event);

try {
$this->federatedEventService->newEvent($event);
} catch (Exception $e) {
}

// $this->memberRequest->insertOrUpdate($member);
}
Expand Down