Merge pull request #4109 from matrix-org/travis/invite-spaces
Filter out empty strings when pasting IDs into the invite dialog
This commit is contained in:
@@ -801,7 +801,7 @@ export default class InviteDialog extends React.PureComponent {
|
|||||||
];
|
];
|
||||||
const toAdd = [];
|
const toAdd = [];
|
||||||
const failed = [];
|
const failed = [];
|
||||||
const potentialAddresses = text.split(/[\s,]+/);
|
const potentialAddresses = text.split(/[\s,]+/).map(p => p.trim()).filter(p => !!p); // filter empty strings
|
||||||
for (const address of potentialAddresses) {
|
for (const address of potentialAddresses) {
|
||||||
const member = possibleMembers.find(m => m.userId === address);
|
const member = possibleMembers.find(m => m.userId === address);
|
||||||
if (member) {
|
if (member) {
|
||||||
|
|||||||
Reference in New Issue
Block a user