Open LeiHao0 opened 7 years ago
Submit feature requests to http://www.mattermost.org/feature-requests/. File non-security related bugs here in the following format:
I confused why the timestamp of messages based on platform? (only if the login user is admin)
mattermost-redux/src/actions/posts.js
const timestamp = Date.now(); ... create_at: timestamp, update_at: timestamp
The timestamp of this Message is based on iPhone's not sever's
Probably because the post is created immediately in the UI, even before it has been sent to the server. I'm pretty sure this will eventually replace the timestamp with the one from the server.
Submit feature requests to http://www.mattermost.org/feature-requests/. File non-security related bugs here in the following format:
Summary
I confused why the timestamp of messages based on platform? (only if the login user is admin)
Environment Information
Steps to reproduce
Expected behavior
mattermost-redux/src/actions/posts.js
Observed behavior
The timestamp of this Message is based on iPhone's not sever's
Possible fixes