Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2021-11-24 01:58:44 +0300
committerChristopher Ng <chrng8@gmail.com>2021-11-24 01:58:44 +0300
commitbe5b9e36cd533a25029f623a185a4ba84506aad5 (patch)
tree166981c64acd7052e8ac90f74a9bde72bfc8ee50 /core/Controller
parentfd487c1a43874bf7eaeebe2ff822e18978b6d1e1 (diff)
Hide user status from public
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/ProfilePageController.php16
1 files changed, 9 insertions, 7 deletions
diff --git a/core/Controller/ProfilePageController.php b/core/Controller/ProfilePageController.php
index e4064370d9c..505dfa4e249 100644
--- a/core/Controller/ProfilePageController.php
+++ b/core/Controller/ProfilePageController.php
@@ -127,13 +127,15 @@ class ProfilePageController extends Controller {
}
}
- $userStatuses = $this->userStatusManager->getUserStatuses([$targetUserId]);
- $status = $userStatuses[$targetUserId] ?? null;
- if ($status !== null) {
- $this->initialStateService->provideInitialState('status', [
- 'icon' => $status->getIcon(),
- 'message' => $status->getMessage(),
- ]);
+ if ($visitingUser !== null) {
+ $userStatuses = $this->userStatusManager->getUserStatuses([$targetUserId]);
+ $status = $userStatuses[$targetUserId] ?? null;
+ if ($status !== null) {
+ $this->initialStateService->provideInitialState('status', [
+ 'icon' => $status->getIcon(),
+ 'message' => $status->getMessage(),
+ ]);
+ }
}
$this->initialStateService->provideInitialState(