Merge branch 'master' of gitlab.com:ledlamp/discord-mpp-bridge

This commit is contained in:
Lamp 2019-07-01 17:22:40 -07:00
commit 6a6308d9a4
1 changed files with 4 additions and 2 deletions

View File

@ -28,9 +28,11 @@ async function messagehandle(data) {
let roomName = data.roomName; let roomName = data.roomName;
let color = data.color; let color = data.color;
let id = data.id; let id = data.id;
if (id == "[discord.gg/k44Eqha]") return; if (id == client.socket.id) return;
let c = dClient.channels.get("593943518351982603"); let c = dClient.channels.get("593943518351982603");
if (c) c.send(`**${sanitizeName(name)}:** ${escapeDiscordMentions(data.message)}`); let msg;
(!name && (data.message.startsWith("[i]") || data.message.startsWith("[d]"))) ? msg = `*${escapeDiscordMentions(data.message)}*` : msg = `**${sanitizeName(name)}:** ${escapeDiscordMentions(data.message)}`;
if (c) c.send(msg);
} }
break; break;
} }