Skip to content

Commit

Permalink
Fix AcceptPendingJoinRequestsCommand (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
mlocati committed Nov 3, 2023
1 parent 7cc72ca commit 6cb114f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/Console/Command/AcceptPendingJoinRequestsCommand.php
Expand Up @@ -61,6 +61,7 @@ public function handle(EntityManager $em, GroupService $groupService, AccessServ
$this->readOptions();
$this->logger->info(($this->dateLimit === null) ? 'Accepting all the pending join requests' : sprintf('Accepting the pending join requests made before %s', $this->dateLimit->format('r')));
$errorsOccurred = false;
$totalAcceptedUsers = 0;
foreach ($this->locales as $locale) {
try {
$totalAcceptedUsers += $this->processLocale($locale);
Expand Down

0 comments on commit 6cb114f

Please sign in to comment.