Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix showing a first timestamp at the start of a convo #5881

Merged
merged 1 commit into from Feb 16, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion shared/actions/chat.js
Expand Up @@ -1109,7 +1109,7 @@ function * _loadMoreMessages (action: LoadMoreMessages): SagaGenerator<any, any>
yield put({type: 'chat:loadingMessages', payload: {conversationIDKey}})

// We receive the list with edit/delete/etc already applied so lets filter that out
const messageTypes = Object.keys(CommonMessageType).filter(k => !['edit', 'delete', 'tlfname', 'headline', 'attachmentuploaded'].includes(k)).map(k => CommonMessageType[k])
const messageTypes = Object.keys(CommonMessageType).filter(k => !['edit', 'delete', 'headline', 'attachmentuploaded'].includes(k)).map(k => CommonMessageType[k])

const thread = yield call(localGetThreadLocalRpcPromise, {param: {
conversationID,
Expand Down