Skip to content

Commit

Permalink
Fix crash in private mention conversations in glitch-soc flavor (#2595)
Browse files Browse the repository at this point in the history
  • Loading branch information
ClearlyClaire authored Jan 30, 2024
1 parent 80308d3 commit 3ede233
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ export const Conversation = ({ conversation, scrollKey, onMoveUp, onMoveDown })
}
}, [dispatch, lastStatus, expanded]);

if (!lastStatus) {
return null;
}

const menu = [
{ text: intl.formatMessage(messages.open), action: handleClick },
null,
Expand Down

0 comments on commit 3ede233

Please sign in to comment.