mirror of
https://github.com/nextcloud/server.git
synced 2026-06-08 08:16:43 -04:00
fix(users): use correct active user count
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
This commit is contained in:
parent
93a3288bd1
commit
51d8dc76c5
1 changed files with 1 additions and 1 deletions
|
|
@ -166,7 +166,7 @@ class UsersController extends Controller {
|
|||
$recentUsersGroup = [
|
||||
'id' => '__nc_internal_recent',
|
||||
'name' => $this->l10n->t('Recently active'),
|
||||
'usercount' => $userCount,
|
||||
'usercount' => $this->userManager->countSeenUsers(),
|
||||
];
|
||||
|
||||
$disabledUsersGroup = [
|
||||
|
|
|
|||
Loading…
Reference in a new issue