mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-20 04:29:15 +00:00
fix: star/unstar messages (#1843)
This commit is contained in:
@@ -453,7 +453,7 @@ class Message extends Base {
|
|||||||
await this.client.pupPage.evaluate((msgId) => {
|
await this.client.pupPage.evaluate((msgId) => {
|
||||||
let msg = window.Store.Msg.get(msgId);
|
let msg = window.Store.Msg.get(msgId);
|
||||||
|
|
||||||
if (msg.canStar()) {
|
if (window.Store.MsgActionChecks.canStarMsg(msg)) {
|
||||||
return window.Store.Cmd.sendStarMsgs(msg.chat, [msg], false);
|
return window.Store.Cmd.sendStarMsgs(msg.chat, [msg], false);
|
||||||
}
|
}
|
||||||
}, this.id._serialized);
|
}, this.id._serialized);
|
||||||
@@ -466,7 +466,7 @@ class Message extends Base {
|
|||||||
await this.client.pupPage.evaluate((msgId) => {
|
await this.client.pupPage.evaluate((msgId) => {
|
||||||
let msg = window.Store.Msg.get(msgId);
|
let msg = window.Store.Msg.get(msgId);
|
||||||
|
|
||||||
if (msg.canStar()) {
|
if (window.Store.MsgActionChecks.canStarMsg(msg)) {
|
||||||
return window.Store.Cmd.sendUnstarMsgs(msg.chat, [msg], false);
|
return window.Store.Cmd.sendUnstarMsgs(msg.chat, [msg], false);
|
||||||
}
|
}
|
||||||
}, this.id._serialized);
|
}, this.id._serialized);
|
||||||
|
|||||||
Reference in New Issue
Block a user