Skip to content

Commit

Permalink
what is going on
Browse files Browse the repository at this point in the history
  • Loading branch information
nickvergessen committed Mar 27, 2024
1 parent 43f1cce commit c742cda
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/Controller/RoomController.php
Original file line number Diff line number Diff line change
Expand Up @@ -266,6 +266,10 @@ public function getRooms(int $noStatusUpdate = 0, bool $includeStatus = false, i
$headers = ['X-Nextcloud-Talk-Modified-Before' => (string) $nextModifiedSince];
\OC::$server->getLogger()->error('$this->talkConfig->isFederationEnabledForUserId($user): ' . json_encode($this->talkConfig->isFederationEnabledForUserId($user)));
\OC::$server->getLogger()->error('$user->getUID()): ' . json_encode($user->getUID()));
\OC::$server->getLogger()->error('$this->fedInviteCountCache === null: ' . json_encode($this->fedInviteCountCache === null));
if ($this->fedInviteCountCache !== null) {
\OC::$server->getLogger()->error('$this->fedInviteCountCache: ' . json_encode(get_class($this->fedInviteCountCache)));
}
\OC::$server->getLogger()->error('$this->fedInviteCountCache?->get($user->getUID()): ' . json_encode($this->fedInviteCountCache?->get($user->getUID())));
if ($this->talkConfig->isFederationEnabledForUserId($user)) {
$numInvites = $this->fedInviteCountCache?->get($user->getUID());
Expand Down

0 comments on commit c742cda

Please sign in to comment.