fix: message search results will use shortened pubkeys for authors

and will now resolve your blinded ids
pull/3083/head
William Grant 11 months ago
parent 521938b5eb
commit cfc7d3350b

@ -1,6 +1,12 @@
import styled, { CSSProperties } from 'styled-components';
import { useConversationUsername, useIsPrivate } from '../../hooks/useParamSelector';
import {
useIsPrivate,
useIsPublic,
useNicknameOrProfileNameOrShortenedPubkey,
} from '../../hooks/useParamSelector';
import { isUsAnySogsFromCache } from '../../session/apis/open_group_api/sogsv3/knownBlindedkeys';
import { PubKey } from '../../session/types';
import { UserUtils } from '../../session/utils';
import { getOurPubKeyStrFromCache } from '../../session/utils/User';
import { openConversationToSpecificMessage } from '../../state/ducks/conversations';
@ -118,14 +124,18 @@ const FromUserInGroup = (props: { authorPubkey: string; conversationId: string }
const { authorPubkey, conversationId } = props;
const ourKey = getOurPubKeyStrFromCache();
const isPublic = useIsPublic(conversationId);
const convoIsPrivate = useIsPrivate(conversationId);
const authorConvoName = useConversationUsername(authorPubkey);
const authorConvoName = useNicknameOrProfileNameOrShortenedPubkey(authorPubkey);
if (convoIsPrivate) {
return null;
}
if (authorPubkey === ourKey) {
if (
authorPubkey === ourKey ||
(isPublic && PubKey.isBlinded(authorPubkey) && isUsAnySogsFromCache(authorPubkey))
) {
return (
<StyledConversationFromUserInGroup>{window.i18n('you')}: </StyledConversationFromUserInGroup>
);

Loading…
Cancel
Save