Add missing paren

This commit is contained in:
Andrew Ferrazzutti 2021-04-05 03:55:35 -04:00
parent 4f288b1754
commit 5aa3cf8b81
1 changed files with 1 additions and 1 deletions

View File

@ -585,7 +585,7 @@ export default class MessagesPuppeteer {
const messages = await this.page.evaluate(
id => window.__mautrixController.parseMessageList(id), id)
return messages.
filter(msg => msg.id > minID && !this.sentMessageIDs.has(msg.id).
filter(msg => msg.id > minID && !this.sentMessageIDs.has(msg.id)).
sort((a,b) => a.id - b.id) // TODO Confirm whether this sort is really needed
}