From c77f9967092d79ac32395ada46ccd786e19db5e2 Mon Sep 17 00:00:00 2001 From: Mikunj Date: Fri, 16 Nov 2018 11:45:16 +1100 Subject: [PATCH] Forgot a ; --- js/models/conversations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/conversations.js b/js/models/conversations.js index 0a7d17081..83dbe8db3 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -203,7 +203,7 @@ // Go through our messages and find the one that we need to update const messages = this.messageCollection.models.filter(m => m.get('sent_at') === timestamp); - await Promise.all(messages.map(m => m.setCalculatingPoW())) + await Promise.all(messages.map(m => m.setCalculatingPoW())); }, addSingleMessage(message, setToExpire = true) {