Compare commits
No commits in common. "23ad6794738c928ebcec5cf37e1e23173ee46b92" and "b26dd1094ce342ff3ccf88eec507ac04d667e0a0" have entirely different histories.
23ad679473
...
b26dd1094c
|
|
@ -20,8 +20,11 @@ const config = require('../../../config.json');
|
|||
//Local Imports
|
||||
const channelModel = require('../../schemas/channel/channelSchema');
|
||||
const emoteModel = require('../../schemas/emoteSchema');
|
||||
const {userModel} = require('../../schemas/user/userSchema');
|
||||
const userBanModel = require('../../schemas/user/userBanSchema');
|
||||
const socketUtils = require('../../utils/socketUtils');
|
||||
const loggerUtils = require('../../utils/loggerUtils');
|
||||
const csrfUtils = require('../../utils/csrfUtils');
|
||||
const presenceUtils = require('../../utils/presenceUtils');
|
||||
const activeChannel = require('./activeChannel');
|
||||
const chatHandler = require('./chatHandler');
|
||||
|
|
|
|||
|
|
@ -214,7 +214,7 @@ textarea{
|
|||
text-shadow: var(--danger-glow0-alt1);
|
||||
}
|
||||
|
||||
.positive-button:not([disabled]){
|
||||
.positive-button{
|
||||
background-color: var(--focus0);
|
||||
color: white;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -108,17 +108,11 @@ class pmPanel extends panelObj{
|
|||
//Pull current sesh from sesh list
|
||||
const sesh = this.client.pmHandler.seshList.get(this.activeSesh);
|
||||
|
||||
//Preprocess message from prompt
|
||||
const preprocessedMessage = this.client.chatBox.commandPreprocessor.preprocess(this.seshPrompt.value);
|
||||
|
||||
//If preprocessedMessage had it's send flag thrown as false
|
||||
if(preprocessedMessage != false){
|
||||
//Stick recipients into the pre-processed message
|
||||
preprocessedMessage.recipients = sesh.recipients;
|
||||
|
||||
//Send message out to server
|
||||
this.client.pmSocket.emit("pm", preprocessedMessage);
|
||||
}
|
||||
this.client.pmSocket.emit("pm", {
|
||||
recipients: sesh.recipients,
|
||||
msg: this.seshPrompt.value
|
||||
});
|
||||
|
||||
//Clear our prompt
|
||||
this.seshPrompt.value = "";
|
||||
|
|
|
|||
Loading…
Reference in a new issue