fix: remove unreliable return values for new mute state

This commit is contained in:
Pedro Lopez
2020-05-24 00:19:23 -04:00
parent 4beeab9b2c
commit 44f837c42a
2 changed files with 4 additions and 9 deletions

View File

@@ -536,28 +536,25 @@ class Client extends EventEmitter {
}
/**
* Mutes the Chat until a specified date and returns the new mute state
* Mutes the Chat until a specified date
* @param {string} chatId ID of the chat that will be muted
* @param {Date} unmuteDate Date when the chat will be unmuted
* @returns {Promise<Boolean>} new mute state
*/
async muteChat(chatId, unmuteDate) {
return await this.pupPage.evaluate(async (chatId, timestamp) => {
await this.pupPage.evaluate(async (chatId, timestamp) => {
let chat = await window.Store.Chat.get(chatId);
await chat.mute.mute(timestamp, !0);
}, chatId, unmuteDate.getTime() / 1000);
}
/**
* Unmutes the Chat and returns the new mute state
* Unmutes the Chat
* @param {string} chatId ID of the chat that will be unmuted
* @returns {Promise<Boolean>} new mute state
*/
async unmuteChat(chatId) {
return await this.pupPage.evaluate(async chatId => {
await this.pupPage.evaluate(async chatId => {
let chat = await window.Store.Chat.get(chatId);
await window.Store.Cmd.muteChat(chat, false);
return chat.mute.isMuted;
}, chatId);
}

View File

@@ -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);