summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/create_post.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/components/create_post.jsx b/webapp/components/create_post.jsx
index dab1d9735..22fba0e73 100644
--- a/webapp/components/create_post.jsx
+++ b/webapp/components/create_post.jsx
@@ -270,11 +270,11 @@ export default class CreatePost extends React.Component {
const action = isReaction[1];
const emojiName = isReaction[2];
- const postId = PostStore.getLatestPost(this.state.channelId).id;
+ const postId = PostStore.getLatestNonEphemeralPost(this.state.channelId).id;
- if (action === '+') {
+ if (postId && action === '+') {
PostActions.addReaction(this.state.channelId, postId, emojiName);
- } else if (action === '-') {
+ } else if (postId && action === '-') {
PostActions.removeReaction(this.state.channelId, postId, emojiName);
}