Fix email verification in sendSMTPTestEmail

Found by deepcode.ai.
This commit is contained in:
Marc Hartmayer 2020-05-24 13:01:18 +02:00
parent fc9f0d8392
commit 6e088af3d1

View file

@ -259,7 +259,7 @@ if (Meteor.isServer) {
throw new Meteor.Error('invalid-user'); throw new Meteor.Error('invalid-user');
} }
const user = Meteor.user(); const user = Meteor.user();
if (!user.emails && !user.emails[0] && user.emails[0].address) { if (!user.emails || !user.emails[0] || user.emails[0].address) {
throw new Meteor.Error('email-invalid'); throw new Meteor.Error('email-invalid');
} }
this.unblock(); this.unblock();