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

Merge pull request #5349 from Ylianst/fix-device-messaging

check msghandle for messaging
This commit is contained in:
Ylian Saint-Hilaire 2023-09-15 17:37:25 -07:00 committed by GitHub
commit 9ffa2bc116
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -644,7 +644,7 @@ module.exports.CreateServer = function (parent) {
// Get the user and domain
const user = parent.webserver.users[userid];
if ((user == null) || (user.email == null) || (user.emailVerified !== true)) return;
if ((user == null) || (user.msghandle == null)) return;
const domain = obj.parent.config.domains[user.domain];
if (domain == null) return;