Skip to content

Commit

Permalink
Merge pull request #5881 from keybase/cjb/DESKTOP-2860-fix-first-time…
Browse files Browse the repository at this point in the history
…stamp

Fix showing a first timestamp at the start of a convo
  • Loading branch information
cjb committed Feb 16, 2017
2 parents 6dfd9ba + 7f78eec commit 49c68d7
Showing 1 changed file with 1 addition and 1 deletion.
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

0 comments on commit 49c68d7

Please sign in to comment.