Merge branch 'testeA'
commit
37f2cb26ad
|
@ -115,6 +115,8 @@ export const initWbot = async (whatsapp: Whatsapp): Promise<Session> => {
|
||||||
wbot.on("ready", async () => {
|
wbot.on("ready", async () => {
|
||||||
logger.info(`Session: ${sessionName} READY`);
|
logger.info(`Session: ${sessionName} READY`);
|
||||||
|
|
||||||
|
// console.log('>>>>>>>>>>>>>> ready wbot.ts MOBILE NUMBER: ', wbot.info["wid"]["user"])
|
||||||
|
|
||||||
await whatsapp.update({
|
await whatsapp.update({
|
||||||
status: "CONNECTED",
|
status: "CONNECTED",
|
||||||
qrcode: "",
|
qrcode: "",
|
||||||
|
|
|
@ -20,6 +20,9 @@ const wbotMonitor = async (
|
||||||
try {
|
try {
|
||||||
wbot.on("change_state", async newState => {
|
wbot.on("change_state", async newState => {
|
||||||
logger.info(`Monitor session: ${sessionName}, ${newState}`);
|
logger.info(`Monitor session: ${sessionName}, ${newState}`);
|
||||||
|
|
||||||
|
// console.log('>>>>>>>>>>>>>> change_state wbotMonitor.ts MOBILE NUMBER: ', wbot.info["wid"]["user"])
|
||||||
|
|
||||||
try {
|
try {
|
||||||
await whatsapp.update({ status: newState });
|
await whatsapp.update({ status: newState });
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
|
|
|
@ -566,6 +566,13 @@ const handleModal = (rowData) => {
|
||||||
width: 300,
|
width: 300,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
pageSize: 20,
|
||||||
|
headerStyle: {
|
||||||
|
position: "sticky",
|
||||||
|
top: "0"
|
||||||
|
},
|
||||||
|
maxBodyHeight: "400px",
|
||||||
|
|
||||||
rowStyle: {
|
rowStyle: {
|
||||||
fontSize: 12,
|
fontSize: 12,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue