1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-02-12 19:11:51 +00:00

Merge pull request #1 from tunght/th-resend-verification-email

Update webserver.js
This commit is contained in:
tunght 2022-03-14 17:34:13 -07:00 committed by GitHub
commit 37693a5134
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1776,7 +1776,7 @@ module.exports.CreateWebServer = function (parent, db, args, certificates, doneF
} else { } else {
// Check is email already exists // Check is email already exists
obj.db.GetUserWithVerifiedEmail(domain.id, email, function (err, docs) { obj.db.GetUserWithVerifiedEmail(domain.id, email, function (err, docs) {
if ((err != null) || (docs.length > 0)) { if ((err != null) || (docs.length > 0 && docs.find(u => u._id === req.session.cuserid) < 0)) {
// Email already exitst // Email already exitst
req.session.messageid = 102; // Existing account with this email address. req.session.messageid = 102; // Existing account with this email address.
} else { } else {