Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[stable30] feat(email): Recognize guests invited via email #13617

Merged
merged 14 commits into from
Oct 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(ban): Allow email guests to bypass bans on their IP
Signed-off-by: Joas Schilling <[email protected]>
  • Loading branch information
nickvergessen authored and backportbot[bot] committed Oct 23, 2024
commit b0df6a345f23a0261234d98541cd315d7ee7286a
2 changes: 1 addition & 1 deletion lib/Service/BanService.php
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ public function throwIfActorIsBanned(Room $room, ?string $userId): void {
}
}

if (!in_array($actorType, [Attendee::ACTOR_GUESTS, Attendee::ACTOR_EMAILS], true)) {
if ($actorType !== Attendee::ACTOR_GUESTS) {
return;
}

Expand Down
Loading