Skip to content

Commit e79abd9

Browse files
committed
Merge remote-tracking branch 'origin/stable19' into stable19
Signed-off-by: Maxence Lange <[email protected]>
2 parents 3473185 + 32ac00b commit e79abd9

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

lib/GlobalScale/MemberAdd.php

+6
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,13 @@ public function result(array $events): void {
214214
$recipients = [$member->getUserId()];
215215
}
216216

217+
$done = [];
217218
foreach ($recipients as $recipient) {
219+
if (in_array($recipient, $done)) {
220+
continue;
221+
}
222+
223+
$done[] = $recipient;
218224
$this->memberIsMailbox($circle, $recipient, $links, $password);
219225
}
220226
}

lib/Search/GlobalScaleUsers.php

+6-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,12 @@ public function search($search) {
102102

103103
$result = [];
104104
foreach ($users as $user) {
105-
list(, $instance) = explode('@', $this->get('federationId', $user), 2);
105+
$cloudId = $this->get('federationId', $user);
106+
$pos = strrpos($cloudId, '@');
107+
if ($pos === false) {
108+
continue;
109+
}
110+
$instance = substr($cloudId, $pos + 1);
106111
if ($this->configService->isLocalInstance($instance)) {
107112
continue;
108113
}

0 commit comments

Comments
 (0)