make sure the conversation with ourself is marked approvedMe

pull/2237/head
Audric Ackermann 3 years ago
parent 1e758c4796
commit bfaeda5cdb
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -53,6 +53,7 @@ import { SessionToastContainer } from '../SessionToastContainer';
import { LeftPaneSectionContainer } from './LeftPaneSectionContainer';
import { getLatestDesktopReleaseFileToFsV2 } from '../../session/apis/file_server_api/FileServerApiV2';
import { ipcRenderer } from 'electron';
import { UserUtils } from '../../session/utils';
const Section = (props: { type: SectionType }) => {
const ourNumber = useSelector(getOurNumber);
@ -185,6 +186,9 @@ const setupTheme = () => {
// Do this only if we created a new Session ID, or if we already received the initial configuration message
const triggerSyncIfNeeded = async () => {
await getConversationController()
.get(UserUtils.getOurPubKeyStrFromCache())
.setDidApproveMe(true, true);
const didWeHandleAConfigurationMessageAlready =
(await getItemById(hasSyncedInitialConfigurationItem))?.value || false;
if (didWeHandleAConfigurationMessageAlready) {

@ -172,6 +172,9 @@ async function registrationDone(ourPubkey: string, displayName: string) {
);
await conversation.setLokiProfile({ displayName });
await conversation.setIsApproved(true);
await conversation.setDidApproveMe(true);
await conversation.commit();
const user = {
ourNumber: getOurPubKeyStrFromCache(),
ourPrimary: window.textsecure.storage.get('primaryDevicePubKey'),

Loading…
Cancel
Save