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

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Collaboration')
-rw-r--r--lib/Collaboration/Collaborators/Listener.php7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Collaboration/Collaborators/Listener.php b/lib/Collaboration/Collaborators/Listener.php
index b5b2136ef..a697675c7 100644
--- a/lib/Collaboration/Collaborators/Listener.php
+++ b/lib/Collaboration/Collaborators/Listener.php
@@ -27,6 +27,7 @@ use OCA\Talk\Config;
use OCA\Talk\Exceptions\ParticipantNotFoundException;
use OCA\Talk\Exceptions\RoomNotFoundException;
use OCA\Talk\Manager;
+use OCA\Talk\Participant;
use OCA\Talk\Room;
use OCP\Collaboration\AutoComplete\AutoCompleteEvent;
use OCP\Collaboration\AutoComplete\IManager;
@@ -127,7 +128,11 @@ class Listener {
$userId = $result['value']['shareWith'];
try {
- $this->room->getParticipant($userId);
+ $participant = $this->room->getParticipant($userId);
+ if ($participant->getAttendee()->getParticipantType() === Participant::USER_SELF_JOINED) {
+ // do list self-joined users so they can be added as permanent participants by moderators
+ return true;
+ }
return false;
} catch (ParticipantNotFoundException $e) {
return true;