summaryrefslogtreecommitdiffstats
path: root/api/context.go
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2017-05-12 09:12:55 -0400
committerGitHub <noreply@github.com>2017-05-12 09:12:55 -0400
commit1397798f1763b0848957a8672c8d40b6243764d5 (patch)
tree5d109da2e9e088f16eff0ad1421876a3d3da412e /api/context.go
parentb1c39204a63a87d2cbc57f66cf9db50c938b2ee5 (diff)
parent9d109b070037951fcd0832b785eba8a3db9a157c (diff)
downloadchat-1397798f1763b0848957a8672c8d40b6243764d5.tar.gz
chat-1397798f1763b0848957a8672c8d40b6243764d5.tar.bz2
chat-1397798f1763b0848957a8672c8d40b6243764d5.zip
Merge pull request #6401 from mattermost/merge-3.9
Merge release-3.9 branch into master
Diffstat (limited to 'api/context.go')
-rw-r--r--api/context.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/api/context.go b/api/context.go
index f8953f547..33dc8b2ac 100644
--- a/api/context.go
+++ b/api/context.go
@@ -222,6 +222,7 @@ func (h handler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if c.Err == nil && h.isUserActivity && token != "" && len(c.Session.UserId) > 0 {
app.SetStatusOnline(c.Session.UserId, c.Session.Id, false)
+ app.UpdateLastActivityAtIfNeeded(c.Session)
}
if c.Err == nil && (h.requireUser || h.requireSystemAdmin) {