fix crash of app on rendering pin item

pull/2112/head
Audric Ackermann 3 years ago
parent 8821cb1080
commit 7c42400aa2
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -11,7 +11,8 @@ import { ContextConversationId } from './ConversationListItem';
import { UserItem } from './UserItem';
const NotificationSettingIcon = (props: { isMessagesSection: boolean }) => {
const convoSetting = useSelector(useConversationPropsById)?.currentNotificationSetting;
const convoId = useContext(ContextConversationId);
const convoSetting = useConversationPropsById(convoId)?.currentNotificationSetting;
if (!props.isMessagesSection) {
return null;

@ -155,11 +155,11 @@ export const getPinConversationMenuItem = (conversationId: string): JSX.Element
if (isMessagesSection) {
const conversation = getConversationController().get(conversationId);
const isPinned = conversation.isPinned();
const isPinned = conversation?.isPinned() || false;
const togglePinConversation = async () => {
if ((!isPinned && nbOfAlreadyPinnedConvos < maxNumberOfPinnedConversations) || isPinned) {
await conversation.setIsPinned(!isPinned);
await conversation?.setIsPinned(!isPinned);
} else {
ToastUtils.pushToastWarning(
'pinConversationLimitToast',

Loading…
Cancel
Save