Skip to content

Commit

Permalink
Fix log error message for UpdateLastActivityAtIfNeeded (mattermost#7282)
Browse files Browse the repository at this point in the history
  • Loading branch information
enahum authored and grundleborg committed Aug 25, 2017
1 parent d13f192 commit a360ac6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/session.go
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ func UpdateLastActivityAtIfNeeded(session model.Session) {
}

if result := <-Srv.Store.Session().UpdateLastActivityAt(session.Id, now); result.Err != nil {
l4g.Error(utils.T("api.status.last_activity.error", session.UserId, session.Id))
l4g.Error(utils.T("api.status.last_activity.error"), session.UserId, session.Id)
}

session.LastActivityAt = now
Expand Down

0 comments on commit a360ac6

Please sign in to comment.