Skip to content
Snippets Groups Projects
Unverified Commit b9d0d209 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix reducer error when conversation has no last status in web UI (#9173)

Fix #9170
parent ce2ee68b
Branches
No related tags found
No related merge requests found
......@@ -21,7 +21,7 @@ const conversationToMap = item => ImmutableMap({
id: item.id,
unread: item.unread,
accounts: ImmutableList(item.accounts.map(a => a.id)),
last_status: item.last_status.id,
last_status: item.last_status ? item.last_status.id : null,
});
const updateConversation = (state, item) => state.update('items', list => {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment