Fix bug when updating thread messages

master
Dragory 2018-02-19 00:55:01 +02:00
parent c2a7ae6fa3
commit 48bbd8cfe1
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ class Thread {
.where('thread_id', this.id)
.where('dm_message_id', msg.id)
.update({
content: msg.content
body: msg.content
});
}