From 48bbd8cfe16615b023a4ab709061d140e4f8421b Mon Sep 17 00:00:00 2001 From: Dragory Date: Mon, 19 Feb 2018 00:55:01 +0200 Subject: [PATCH] Fix bug when updating thread messages --- src/data/Thread.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/Thread.js b/src/data/Thread.js index f409a7a..e744622 100644 --- a/src/data/Thread.js +++ b/src/data/Thread.js @@ -220,7 +220,7 @@ class Thread { .where('thread_id', this.id) .where('dm_message_id', msg.id) .update({ - content: msg.content + body: msg.content }); }