Minor formatting changes

This commit is contained in:
Andrew Ferrazzutti 2021-06-10 02:52:13 -04:00
parent 1cf840e3d9
commit e37a7c41bf
1 changed files with 6 additions and 7 deletions

View File

@ -500,8 +500,7 @@ export default class MessagesPuppeteer {
}
async _getChatInfoUnsafe(chatID) {
const chatListItem = await this.page.$(this._listItemSelector(chatID))
const chatListInfo = await chatListItem.evaluate(
const chatListInfo = await this.page.$eval(this._listItemSelector(chatID),
(element, chatID) => window.__mautrixController.parseChatListItem(element, chatID),
chatID)
@ -520,7 +519,7 @@ export default class MessagesPuppeteer {
let participants
if (!isDirect) {
this.log("Found multi-user chat, so clicking chat header to get participants")
this.log("Found multi-user chat, so viewing it to get participants")
// TODO This will mark the chat as "read"!
await this._switchChat(chatID)
const participantList = await this.page.$("#_chat_detail_area > .mdRGT02Info ul.mdRGT13Ul")