mirror of
https://github.com/cheveguerra/whatsapp-web.js.git
synced 2026-04-18 11:39:14 +00:00
fix: remove unreliable return values for new mute state
This commit is contained in:
@@ -115,7 +115,6 @@ class Chat extends Base {
|
||||
/**
|
||||
* Mutes this chat until a specified date
|
||||
* @param {Date} unmuteDate Date at which the Chat will be unmuted
|
||||
* @returns {Promise<Boolean>} new mute state
|
||||
*/
|
||||
async mute(unmuteDate) {
|
||||
return this.client.muteChat(this.id._serialized, unmuteDate);
|
||||
@@ -123,7 +122,6 @@ class Chat extends Base {
|
||||
|
||||
/**
|
||||
* Unmutes this chat
|
||||
* @returns {Promise<Boolean>} new mute state
|
||||
*/
|
||||
async unmute() {
|
||||
return this.client.unmuteChat(this.id._serialized);
|
||||
|
||||
Reference in New Issue
Block a user