summaryrefslogtreecommitdiffstats
path: root/webapp/stores
diff options
context:
space:
mode:
authorSaturnino Abril <saturnino.abril@gmail.com>2017-06-28 02:59:08 +0800
committerJoram Wilander <jwawilander@gmail.com>2017-06-27 14:59:08 -0400
commit0b62078712190be9edaf8428762185f1c38d5226 (patch)
tree933d4b779723483501cb6ee09193f41f10fc8e63 /webapp/stores
parente2daa425fac3c976e21ed048b13424a2dc437a20 (diff)
downloadchat-0b62078712190be9edaf8428762185f1c38d5226.tar.gz
chat-0b62078712190be9edaf8428762185f1c38d5226.tar.bz2
chat-0b62078712190be9edaf8428762185f1c38d5226.zip
[PLT-6745] Fix action of SHIFT+UP by fixing latest replay-able post (#6738)
* fix latest replayable post * use PostUtils.isSystemMessage instead of checkin that post.type is empty
Diffstat (limited to 'webapp/stores')
-rw-r--r--webapp/stores/post_store.jsx5
1 files changed, 3 insertions, 2 deletions
diff --git a/webapp/stores/post_store.jsx b/webapp/stores/post_store.jsx
index 66e7108ca..b4c8c43c8 100644
--- a/webapp/stores/post_store.jsx
+++ b/webapp/stores/post_store.jsx
@@ -8,6 +8,7 @@ import ChannelStore from 'stores/channel_store.jsx';
import BrowserStore from 'stores/browser_store.jsx';
import UserStore from 'stores/user_store.jsx';
+import * as PostUtils from 'utils/post_utils.jsx';
import {Constants} from 'utils/constants.jsx';
const ActionTypes = Constants.ActionTypes;
@@ -69,13 +70,13 @@ class PostStoreClass extends EventEmitter {
return postsInChannel[0];
}
- getLatestNonEphemeralPost(channelId) {
+ getLatestReplyablePost(channelId) {
const postIds = getState().entities.posts.postsInChannel[channelId];
const posts = getState().entities.posts.posts;
for (const postId of postIds) {
const post = posts[postId] || {};
- if (post.state !== Constants.POST_DELETED && post.type !== Constants.PostTypes.EPHEMERAL) {
+ if (post.state !== Constants.POST_DELETED && !PostUtils.isSystemMessage(post)) {
return post;
}
}