Minor formatting changes
This commit is contained in:
parent
1cf840e3d9
commit
e37a7c41bf
|
@ -500,8 +500,7 @@ export default class MessagesPuppeteer {
|
||||||
}
|
}
|
||||||
|
|
||||||
async _getChatInfoUnsafe(chatID) {
|
async _getChatInfoUnsafe(chatID) {
|
||||||
const chatListItem = await this.page.$(this._listItemSelector(chatID))
|
const chatListInfo = await this.page.$eval(this._listItemSelector(chatID),
|
||||||
const chatListInfo = await chatListItem.evaluate(
|
|
||||||
(element, chatID) => window.__mautrixController.parseChatListItem(element, chatID),
|
(element, chatID) => window.__mautrixController.parseChatListItem(element, chatID),
|
||||||
chatID)
|
chatID)
|
||||||
|
|
||||||
|
@ -520,7 +519,7 @@ export default class MessagesPuppeteer {
|
||||||
|
|
||||||
let participants
|
let participants
|
||||||
if (!isDirect) {
|
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"!
|
// TODO This will mark the chat as "read"!
|
||||||
await this._switchChat(chatID)
|
await this._switchChat(chatID)
|
||||||
const participantList = await this.page.$("#_chat_detail_area > .mdRGT02Info ul.mdRGT13Ul")
|
const participantList = await this.page.$("#_chat_detail_area > .mdRGT02Info ul.mdRGT13Ul")
|
||||||
|
|
Loading…
Reference in New Issue