Skip server ignored check when contact gsid is empty in Module\Contact\Profile

pull/13371/head
Hypolite Petovan 2023-08-22 08:38:12 -04:00
rodzic 0219d200a5
commit 3d13db1f2c
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -267,7 +267,13 @@ class Profile extends BaseModule
$insecure = $this->t('Private communications are not available for this contact.');
// @TODO: Figure out why gsid can be empty
if (empty($contact['gsid'])) {
$this->logger->notice('Empty gsid for contact', ['contact' => $contact]);
}
$serverIgnored =
$contact['gsid'] &&
$this->userGServer->isIgnoredByUser($this->session->getLocalUserId(), $contact['gsid']) ?
$this->t('This contact is on a server you ignored.')
: '';