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
skjnldsv and come-nc committed Jun 7, 2024
commit 81459eacebc287a3f5c4edc952d61a10a18c8782
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