mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
fix(users): use correct active user count
Signed-off-by: Benjamin Gaussorgues <benjamin.gaussorgues@nextcloud.com>
This commit is contained in:
parent
14ff0e49a6
commit
34ade098bd
1 changed files with 1 additions and 1 deletions
|
|
@ -168,7 +168,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