|
|
@ -34,7 +34,9 @@ export class SessionConversation extends React.Component<any, State> {
|
|
|
|
|
|
|
|
|
|
|
|
constructor(props: any) {
|
|
|
|
constructor(props: any) {
|
|
|
|
super(props);
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
console.log(`[conv] Props:`, props);
|
|
|
|
|
|
|
|
|
|
|
|
const conversationKey = this.props.conversations.selectedConversation;
|
|
|
|
const conversationKey = this.props.conversations.selectedConversation;
|
|
|
|
const conversation = this.props.conversations.conversationLookup[conversationKey];
|
|
|
|
const conversation = this.props.conversations.conversationLookup[conversationKey];
|
|
|
|
const unreadCount = conversation.unreadCount;
|
|
|
|
const unreadCount = conversation.unreadCount;
|
|
|
|