Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
fix: php lint
Co-authored-by: Côme Chilliet <[email protected]>
Signed-off-by: John Molakvoæ <[email protected]>
  • Loading branch information
2 people authored and backportbot[bot] committed May 30, 2024
commit bb05f26364a6b8922a9ab704f3a3f057fcd0c5ca
2 changes: 1 addition & 1 deletion apps/user_ldap/lib/User/DeletedUsersIndex.php
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ private function fetchDeletedUsers(): array {

$userObjects = [];
foreach ($deletedUsers as $user) {
$userObject = new OfflineUser($user, $this->config, $this->mapping, $this->shareManager);;
$userObject = new OfflineUser($user, $this->config, $this->mapping, $this->shareManager);
if ($userObject->getLastLogin() > $userObject->getDetectedOn()) {
$userObject->unmark();
} else {
Expand Down