summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-10-23 11:22:08 -0400
committerJoramWilander <jwawilander@gmail.com>2015-10-23 11:22:08 -0400
commitfe82c43eeb403ee2ef3ce2932f64bf00c784a65d (patch)
tree9446b802e63ad247d195df85a83628505627528a /web/react/utils
parent6724ef4314efbd82e9b608b53679444d60c4ba08 (diff)
downloadchat-fe82c43eeb403ee2ef3ce2932f64bf00c784a65d.tar.gz
chat-fe82c43eeb403ee2ef3ce2932f64bf00c784a65d.tar.bz2
chat-fe82c43eeb403ee2ef3ce2932f64bf00c784a65d.zip
Force updating last viewed at for new posts
Diffstat (limited to 'web/react/utils')
-rw-r--r--web/react/utils/async_client.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/utils/async_client.jsx b/web/react/utils/async_client.jsx
index fb7631159..b1bc71d54 100644
--- a/web/react/utils/async_client.jsx
+++ b/web/react/utils/async_client.jsx
@@ -152,14 +152,14 @@ export function getChannel(id) {
);
}
-export function updateLastViewedAt() {
+export function updateLastViewedAt(force) {
const channelId = ChannelStore.getCurrentId();
if (channelId === null) {
return;
}
- if (isCallInProgress(`updateLastViewed${channelId}`)) {
+ if (isCallInProgress(`updateLastViewed${channelId}`) && !force) {
return;
}