Finished up work on advanced formatted private messaging.
This commit is contained in:
parent
faf72fd7a5
commit
2feea72694
|
|
@ -14,49 +14,25 @@ GNU Affero General Public License for more details.
|
||||||
You should have received a copy of the GNU Affero General Public License
|
You should have received a copy of the GNU Affero General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
||||||
|
|
||||||
|
//local imports
|
||||||
|
const chatMetadata = require("../chatMetadata");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class representing a single chat message
|
* Class representing a single chat message
|
||||||
*/
|
*/
|
||||||
class chat{
|
class chat extends chatMetadata{
|
||||||
/**
|
/**
|
||||||
* Instantiates a chat message object
|
* Instantiates a chat message object
|
||||||
* @param {connectedUser} user - User who sent the message
|
* @param {connectedUser} user - User who sent the message
|
||||||
* @param {String} flair - Flair ID String for the flair used to send the message
|
|
||||||
* @param {Number} highLevel - Number representing current high level
|
|
||||||
* @param {String} msg - Contents of the message, with links replaced with numbered file-seperator markers
|
|
||||||
* @param {String} type - Message Type Identifier, used for client-side processing.
|
|
||||||
* @param {Array} links - Array of URLs/Links included in the message.
|
|
||||||
*/
|
*/
|
||||||
constructor(user, flair, highLevel, msg, type, links){
|
constructor(user, flair, highLevel, msg, type, links){
|
||||||
|
//Call derived constructor
|
||||||
|
super(flair, highLevel, msg, type, links);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* User who sent the message
|
* User who sent the message
|
||||||
*/
|
*/
|
||||||
this.user = user;
|
this.user = user;
|
||||||
|
|
||||||
/**
|
|
||||||
* Flair ID String for the flair used to send the message
|
|
||||||
*/
|
|
||||||
this.flair = flair;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Number representing current high level
|
|
||||||
*/
|
|
||||||
this.highLevel = highLevel;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* COntents of the message, with links replaced with numbered file-seperator marks
|
|
||||||
*/
|
|
||||||
this.msg = msg;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Message Type Identifier, used for client-side processing.
|
|
||||||
*/
|
|
||||||
this.type = type;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Array of URLs/Links included in the message.
|
|
||||||
*/
|
|
||||||
this.links = links;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
57
src/app/chatMetadata.js
Normal file
57
src/app/chatMetadata.js
Normal file
|
|
@ -0,0 +1,57 @@
|
||||||
|
/*Canopy - The next generation of stoner streaming software
|
||||||
|
Copyright (C) 2024-2025 Rainbownapkin and the TTN Community
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU Affero General Public License as
|
||||||
|
published by the Free Software Foundation, either version 3 of the
|
||||||
|
License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU Affero General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Affero General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class representing a the metadata of a single message
|
||||||
|
*/
|
||||||
|
class chatMetadata{
|
||||||
|
/**
|
||||||
|
* Instantiates a chat metadata object
|
||||||
|
* @param {String} flair - Flair ID String for the flair used to send the message
|
||||||
|
* @param {Number} highLevel - Number representing current high level
|
||||||
|
* @param {String} msg - Contents of the message, with links replaced with numbered file-seperator markers
|
||||||
|
* @param {String} type - Message Type Identifier, used for client-side processing.
|
||||||
|
* @param {Array} links - Array of URLs/Links included in the message.
|
||||||
|
*/
|
||||||
|
constructor(flair, highLevel, msg, type, links){
|
||||||
|
/**
|
||||||
|
* Flair ID String for the flair used to send the message
|
||||||
|
*/
|
||||||
|
this.flair = flair;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Number representing current high level
|
||||||
|
*/
|
||||||
|
this.highLevel = highLevel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* COntents of the message, with links replaced with numbered file-seperator marks
|
||||||
|
*/
|
||||||
|
this.msg = msg;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Message Type Identifier, used for client-side processing.
|
||||||
|
*/
|
||||||
|
this.type = type;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Array of URLs/Links included in the message.
|
||||||
|
*/
|
||||||
|
this.links = links;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = chatMetadata;
|
||||||
|
|
@ -14,44 +14,30 @@ GNU Affero General Public License for more details.
|
||||||
You should have received a copy of the GNU Affero General Public License
|
You should have received a copy of the GNU Affero General Public License
|
||||||
along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
||||||
|
|
||||||
|
//localImports
|
||||||
|
const chatMetadata = require("../chatMetadata");
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class representing a single chat message
|
* Class representing a single chat message
|
||||||
*/
|
*/
|
||||||
class message{
|
class message extends chatMetadata{
|
||||||
/**
|
/**
|
||||||
* Instantiates a chat message object
|
* @param {String} user - Name of user who sent the message
|
||||||
* @param {String} sender - Name of user who sent the message
|
|
||||||
* @param {Array} recipients - Array of usernames who are supposed to receive the message
|
* @param {Array} recipients - Array of usernames who are supposed to receive the message
|
||||||
* @param {String} msg - Contents of the message, with links replaced with numbered file-seperator markers
|
|
||||||
* @param {String} type - Message Type Identifier, used for client-side processing.
|
|
||||||
* @param {Array} links - Array of URLs/Links included in the message.
|
|
||||||
*/
|
*/
|
||||||
constructor(sender, recipients, msg, type, links){
|
constructor(user, recipients, flair, highLevel, msg, type, links){
|
||||||
|
//Call derived constructor
|
||||||
|
super(flair, highLevel, msg, type, links);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Name of user who sent the message
|
* Name of user who sent the message
|
||||||
*/
|
*/
|
||||||
this.sender = sender;
|
this.user = user;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Array of usernames who are supposed to receive the message
|
* Array of usernames who are supposed to receive the message
|
||||||
*/
|
*/
|
||||||
this.recipients = recipients;
|
this.recipients = recipients;
|
||||||
|
|
||||||
/**
|
|
||||||
* Contenst of the messages, with links replaced with numbered file-seperator markers
|
|
||||||
*/
|
|
||||||
this.msg = msg;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Message Type Identifier, used for client-side processing.
|
|
||||||
*/
|
|
||||||
this.type = type;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Array of URLs/Links included in the message.
|
|
||||||
*/
|
|
||||||
this.links = links;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -30,13 +30,19 @@ class pmHandler{
|
||||||
/**
|
/**
|
||||||
* Instantiates object containing global server-side private message relay logic
|
* Instantiates object containing global server-side private message relay logic
|
||||||
* @param {Socket.io} io - Socket.io server instanced passed down from server.js
|
* @param {Socket.io} io - Socket.io server instanced passed down from server.js
|
||||||
|
* @param {channelManager} chanServer - Sister channel management server object
|
||||||
*/
|
*/
|
||||||
constructor(io){
|
constructor(io, chanServer){
|
||||||
/**
|
/**
|
||||||
* Socket.io server instance passed down from server.js
|
* Socket.io server instance passed down from server.js
|
||||||
*/
|
*/
|
||||||
this.io = io;
|
this.io = io;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sister channel management server object
|
||||||
|
*/
|
||||||
|
this.chanServer = chanServer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Socket.io server namespace for handling messaging
|
* Socket.io server namespace for handling messaging
|
||||||
*/
|
*/
|
||||||
|
|
@ -107,14 +113,28 @@ class pmHandler{
|
||||||
//preprocess message
|
//preprocess message
|
||||||
const preprocessedMessage = await this.chatPreprocessor.preprocess(socket, data);
|
const preprocessedMessage = await this.chatPreprocessor.preprocess(socket, data);
|
||||||
|
|
||||||
//Create message object and relay it off to the recipients
|
//If the send flag wasnt thrown false
|
||||||
this.relayPMObj(new message(
|
if(preprocessedMessage != false){
|
||||||
socket.user.user,
|
//Pull an active user profile from the first channel that gives it in the chan server
|
||||||
recipients,
|
const senderProfile = this.chanServer.activeUsers.get(socket.user.user);
|
||||||
preprocessedMessage.message,
|
|
||||||
preprocessedMessage.chatType,
|
//If user isn't actively connected to a channel
|
||||||
preprocessedMessage.links
|
if(senderProfile == null || senderProfile.length == 0){
|
||||||
));
|
//They don't get to send shit lol
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
//Create message object and relay it off to the recipients
|
||||||
|
this.relayPMObj(new message(
|
||||||
|
socket.user.user,
|
||||||
|
recipients,
|
||||||
|
senderProfile[0].flair,
|
||||||
|
senderProfile[0].highLevel,
|
||||||
|
preprocessedMessage.message,
|
||||||
|
preprocessedMessage.chatType,
|
||||||
|
preprocessedMessage.links
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
//If something fucked up
|
//If something fucked up
|
||||||
}catch(err){
|
}catch(err){
|
||||||
|
|
@ -131,7 +151,7 @@ class pmHandler{
|
||||||
}
|
}
|
||||||
|
|
||||||
//Acknowledge the sent message
|
//Acknowledge the sent message
|
||||||
this.namespace.to(msg.sender).emit("sent", msg);
|
this.namespace.to(msg.user).emit("sent", msg);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -197,7 +197,7 @@ scheduler.kickoff();
|
||||||
|
|
||||||
//Hand over general-namespace socket.io connections to the channel manager
|
//Hand over general-namespace socket.io connections to the channel manager
|
||||||
module.exports.channelManager = new channelManager(io)
|
module.exports.channelManager = new channelManager(io)
|
||||||
module.exports.pmHandler = new pmHandler(io)
|
module.exports.pmHandler = new pmHandler(io, module.exports.channelManager);
|
||||||
|
|
||||||
//Listen Function
|
//Listen Function
|
||||||
webServer.listen(port, () => {
|
webServer.listen(port, () => {
|
||||||
|
|
|
||||||
|
|
@ -162,18 +162,18 @@ p.panel-head-element{
|
||||||
height: 1.5em;
|
height: 1.5em;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-entry{
|
.chat-entry, .pm-panel-sesh-entry{
|
||||||
display: flex;
|
display: flex;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-entry-username{
|
.chat-entry-username, .pm-panel-sesh-entry-username{
|
||||||
margin: auto 0.2em auto 0;
|
margin: auto 0.2em auto 0;
|
||||||
text-wrap: nowrap;
|
text-wrap: nowrap;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-entry-body{
|
.chat-entry-body, .pm-panel-sesh-entry-body{
|
||||||
margin: 0.2em;
|
margin: 0.2em;
|
||||||
align-content: center;
|
align-content: center;
|
||||||
}
|
}
|
||||||
|
|
@ -182,7 +182,7 @@ p.panel-head-element{
|
||||||
margin: auto;
|
margin: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
.chat-entry-high-level{
|
.chat-entry-high-level, .pm-panel-sesh-entry-high-level{
|
||||||
margin: auto 0 auto 0.2em;
|
margin: auto 0 auto 0.2em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -17,13 +17,14 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: horizontal;
|
flex-direction: horizontal;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pm-panel-sesh-list-container{
|
#pm-panel-sesh-list-container{
|
||||||
flex: 1;
|
flex: 1;
|
||||||
max-width: 10em;
|
max-width: 10em;
|
||||||
width: calc(100% - 1.25em);
|
|
||||||
margin-left: 0.25em;
|
margin-left: 0.25em;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pm-panel-sesh-container{
|
#pm-panel-sesh-container{
|
||||||
|
|
@ -32,6 +33,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: calc(100% - 0.25em);
|
height: calc(100% - 0.25em);
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
margin-right: 0.25em;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pm-panel-start-sesh{
|
#pm-panel-start-sesh{
|
||||||
|
|
@ -49,6 +51,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.*/
|
||||||
|
|
||||||
#pm-panel-sesh-buffer{
|
#pm-panel-sesh-buffer{
|
||||||
flex: 1;
|
flex: 1;
|
||||||
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pm-panel-sesh-control-div{
|
#pm-panel-sesh-control-div{
|
||||||
|
|
@ -72,12 +75,6 @@ div.pm-panel-sesh-list-entry, div.pm-panel-sesh-list-entry p{
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#pm-panel-sesh-buffer span{
|
|
||||||
display: flex;
|
|
||||||
flex-direction: row;
|
|
||||||
margin: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.pm-panel-sesh-message-sender, .pm-panel-sesh-message-content{
|
.pm-panel-sesh-message-sender, .pm-panel-sesh-message-content{
|
||||||
margin: 0;
|
margin: 0;
|
||||||
font-size: 10pt;
|
font-size: 10pt;
|
||||||
|
|
@ -89,4 +86,36 @@ div.pm-panel-sesh-list-entry, div.pm-panel-sesh-list-entry p{
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pm-panel-sesh-entry{
|
||||||
|
display: flex;
|
||||||
|
align-content: center;
|
||||||
|
font-size: 10pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pm-panel-sesh-entry-username{
|
||||||
|
margin: auto 0.2em auto 0;
|
||||||
|
text-wrap: nowrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pm-panel-sesh-entry-body{
|
||||||
|
margin: 0.2em;
|
||||||
|
align-content: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.pm-panel-sesh-entry-high-level{
|
||||||
|
margin: auto 0 auto 0.2em;
|
||||||
|
}
|
||||||
|
|
||||||
|
.high-level{
|
||||||
|
z-index: 2;
|
||||||
|
background-image: url("/img/sweet_leaf_simple.png");
|
||||||
|
background-size: 1.3em;
|
||||||
|
background-repeat: no-repeat;
|
||||||
|
background-position-x: center;
|
||||||
|
background-position-y: top;
|
||||||
|
width: 1.5em;
|
||||||
|
text-align: center;
|
||||||
|
flex-shrink: 0;
|
||||||
}
|
}
|
||||||
|
|
@ -623,13 +623,12 @@ div.archived p{
|
||||||
border-left: 1px solid var(--accent0);
|
border-left: 1px solid var(--accent0);
|
||||||
}
|
}
|
||||||
|
|
||||||
#pm-panel-start-sesh{
|
#pm-panel-start-sesh, div.pm-panel-sesh-list-entry{
|
||||||
border-bottom: 1px solid var(--accent0);
|
border-bottom: 1px solid var(--accent0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
span.pm-panel-sesh-entry{
|
||||||
div.pm-panel-sesh-list-entry{
|
border-bottom: 1px solid var(--accent1-alt1);
|
||||||
border-bottom: 1px solid var(--accent0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* altcha theming*/
|
/* altcha theming*/
|
||||||
|
|
|
||||||
|
|
@ -35,14 +35,13 @@ class chatPostprocessor{
|
||||||
* @param {Object} rawData - Raw data from server
|
* @param {Object} rawData - Raw data from server
|
||||||
* @returns {Node} Post-Processed Chat Entry
|
* @returns {Node} Post-Processed Chat Entry
|
||||||
*/
|
*/
|
||||||
postprocess(rawData){
|
postprocess(rawData, pm = false){
|
||||||
//Create empty array to hold filter spans
|
//Create empty array to hold filter spans
|
||||||
this.filterSpans = [];
|
this.filterSpans = [];
|
||||||
//Set raw message data
|
//Set raw message data
|
||||||
this.rawData = rawData;
|
this.rawData = rawData;
|
||||||
//Set current chat nodes
|
//Set current chat nodes
|
||||||
this.buildEntry();
|
this.buildEntry(pm);
|
||||||
this.chatBody = this.chatEntry.querySelector(".chat-entry-body");
|
|
||||||
|
|
||||||
//Split the chat message into an array of objects representing each word/chunk
|
//Split the chat message into an array of objects representing each word/chunk
|
||||||
this.splitMessage();
|
this.splitMessage();
|
||||||
|
|
@ -87,14 +86,16 @@ class chatPostprocessor{
|
||||||
return this.chatEntry;
|
return this.chatEntry;
|
||||||
}
|
}
|
||||||
|
|
||||||
buildEntry(){
|
buildEntry(pm){
|
||||||
|
const classSuffix = pm ? 'pm-panel-sesh' : 'chat';
|
||||||
|
const classSuffixAlt = pm ? classSuffix : 'chat-panel';
|
||||||
//Create chat-entry span
|
//Create chat-entry span
|
||||||
this.chatEntry = document.createElement('span');
|
this.chatEntry = document.createElement('span');
|
||||||
this.chatEntry.classList.add("chat-panel-buffer","chat-entry",`chat-entry-${this.rawData.user}`);
|
this.chatEntry.classList.add(`${classSuffixAlt}-buffer`,`${classSuffix}-entry`,`${classSuffix}-entry-${this.rawData.user}`);
|
||||||
|
|
||||||
//Create high-level label
|
//Create high-level label
|
||||||
var highLevel = document.createElement('p');
|
var highLevel = document.createElement('p');
|
||||||
highLevel.classList.add("chat-panel-buffer","chat-entry-high-level","high-level");
|
highLevel.classList.add(`${classSuffixAlt}-buffer`,`${classSuffix}-entry-high-level`,"high-level");
|
||||||
highLevel.textContent = utils.unescapeEntities(`${this.rawData.highLevel}`);
|
highLevel.textContent = utils.unescapeEntities(`${this.rawData.highLevel}`);
|
||||||
this.chatEntry.appendChild(highLevel);
|
this.chatEntry.appendChild(highLevel);
|
||||||
|
|
||||||
|
|
@ -110,11 +111,11 @@ class chatPostprocessor{
|
||||||
|
|
||||||
//Create username label
|
//Create username label
|
||||||
var userLabel = document.createElement('p');
|
var userLabel = document.createElement('p');
|
||||||
userLabel.classList.add("chat-panel-buffer", "chat-entry-username", );
|
userLabel.classList.add(`${classSuffixAlt}-buffer`, `${classSuffix}-entry-username`, );
|
||||||
|
|
||||||
//Create color span
|
//Create color span
|
||||||
var flairSpan = document.createElement('span');
|
var flairSpan = document.createElement('span');
|
||||||
flairSpan.classList.add("chat-entry-flair-span", flair);
|
flairSpan.classList.add(`${classSuffix}-entry-flair-span`, flair);
|
||||||
flairSpan.innerHTML = this.rawData.user;
|
flairSpan.innerHTML = this.rawData.user;
|
||||||
|
|
||||||
//Inject flair span into user label before the colon
|
//Inject flair span into user label before the colon
|
||||||
|
|
@ -124,9 +125,11 @@ class chatPostprocessor{
|
||||||
this.chatEntry.appendChild(userLabel);
|
this.chatEntry.appendChild(userLabel);
|
||||||
|
|
||||||
//Create chat body
|
//Create chat body
|
||||||
var chatBody = document.createElement('p');
|
this.chatBody = document.createElement('p');
|
||||||
chatBody.classList.add("chat-panel-buffer","chat-entry-body");
|
this.chatBody.classList.add(`${classSuffixAlt}-buffer`,`${classSuffix}-entry-body`);
|
||||||
this.chatEntry.appendChild(chatBody);
|
|
||||||
|
//Append chat body to chat entry
|
||||||
|
this.chatEntry.appendChild(this.chatBody);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
||||||
|
|
@ -229,7 +229,7 @@ class pmPanel extends panelObj{
|
||||||
*/
|
*/
|
||||||
renderMessage(message){
|
renderMessage(message){
|
||||||
//Run postprocessing functions on chat message
|
//Run postprocessing functions on chat message
|
||||||
const postprocessedMessage = client.chatBox.chatPostprocessor.postprocess(message);
|
const postprocessedMessage = client.chatBox.chatPostprocessor.postprocess(message, true);
|
||||||
|
|
||||||
//Append message to buffer
|
//Append message to buffer
|
||||||
this.seshBuffer.appendChild(postprocessedMessage);
|
this.seshBuffer.appendChild(postprocessedMessage);
|
||||||
|
|
|
||||||
|
|
@ -112,9 +112,9 @@ class pmHandler{
|
||||||
}
|
}
|
||||||
|
|
||||||
//If this wasn't our message
|
//If this wasn't our message
|
||||||
if(message.sender != client.user.user){
|
if(message.user != client.user.user){
|
||||||
//Push sender onto members list
|
//Push sender onto members list
|
||||||
recipients.push(message.sender);
|
recipients.push(message.user);
|
||||||
}
|
}
|
||||||
|
|
||||||
//Sort recipients
|
//Sort recipients
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue