Fix profile keys not being decoded properly

pull/1230/head
Mikunj 5 years ago
parent 7fe188417a
commit f48e10fccd

@ -496,7 +496,7 @@ export class LeftPaneMessageSection extends React.Component<Props, State> {
} finally {
this.setState({
loading: false,
});
});
}
}

@ -368,12 +368,12 @@ async function isMessageDuplicate({
}
async function handleProfileUpdate(
profileKeyBuffer: any,
profileKeyBuffer: Uint8Array,
convoId: string,
convoType: ConversationType,
isIncoming: boolean
) {
const profileKey = profileKeyBuffer.toString('base64');
const profileKey = StringUtils.decode(profileKeyBuffer, 'base64');
if (!isIncoming) {
const receiver = await window.ConversationController.getOrCreateAndWait(

@ -7,6 +7,7 @@ import { PrimaryPubKey, PubKey } from '../session/types';
import _ from 'lodash';
import { MultiDeviceProtocol } from '../session/protocols';
import { SignalService } from '../protobuf';
import { StringUtils } from '../session/utils';
async function handleGroups(
conversation: ConversationModel,
@ -265,11 +266,11 @@ function processProfileKey(
source: string,
conversation: ConversationModel,
sendingDeviceConversation: ConversationModel,
profileKeyBuffer: any
profileKeyBuffer: Uint8Array
) {
const ourNumber = window.textsecure.storage.user.getNumber();
const profileKey = profileKeyBuffer.toString('base64');
const profileKey = StringUtils.decode(profileKeyBuffer, 'base64');
if (source === ourNumber) {
conversation.set({ profileSharing: true });
} else if (conversation.isPrivate()) {

Loading…
Cancel
Save