Fixes reading wrong websocket message property (#3580)

Этот коммит содержится в:
Joram Wilander
2016-07-13 12:55:20 -04:00
коммит произвёл Christopher Speller
родитель 1df0488932
Коммит 006fc6c253

Просмотреть файл

@@ -26,7 +26,7 @@ export function handleNewPost(post, msg) {
var websocketMessageProps = null;
if (msg) {
websocketMessageProps = msg.props;
websocketMessageProps = msg.data;
}
if (post.root_id && PostStore.getPost(post.channel_id, post.root_id) == null) {