Skip to content

Commit

Permalink
Merge pull request #6211 from nextcloud/backport/2977/stable4.7
Browse files Browse the repository at this point in the history
[stable4.7] Fix: when a attendee is a second person without email, skip alreadyInvitedEmails check
  • Loading branch information
miaulalala authored Jul 31, 2024
2 parents edc77d8 + 7a4e198 commit b84374f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Editor/Invitees/InviteesListSearch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ export default {
name = email
}
if (this.alreadyInvitedEmails.includes(email)) {
if (email && this.alreadyInvitedEmails.includes(email)) {
return
}
Expand Down

0 comments on commit b84374f

Please sign in to comment.