Add missing await

When will I stop forgetting this?...
This commit is contained in:
Andrew Ferrazzutti 2021-07-30 02:43:28 -04:00
parent 239b71702e
commit bba3f87635
1 changed files with 1 additions and 1 deletions

View File

@ -795,7 +795,7 @@ export default class MessagesPuppeteer {
await chatItem.evaluate(e => e.click()) await chatItem.evaluate(e => e.click())
} else { } else {
await this._interactWithPage(async () => { await this._interactWithPage(async () => {
chatItem.click() await chatItem.click()
}) })
} }
this.log(`Waiting for chat header title to be "${chatName}"`) this.log(`Waiting for chat header title to be "${chatName}"`)