@ -35,12 +35,7 @@ import { assertUnreachable } from '../types/sqlSharedTypes';
import { BlockedNumberController } from '../util' ;
import { Registration } from '../util/registration' ;
import { ReleasedFeatures } from '../util/releaseFeature' ;
import {
Storage ,
getLastProfileUpdateTimestamp ,
isSignInByLinking ,
setLastProfileUpdateTimestamp ,
} from '../util/storage' ;
import { Storage , isSignInByLinking , setLastProfileUpdateTimestamp } from '../util/storage' ;
// eslint-disable-next-line import/no-unresolved
import { ConfigWrapperObjectTypes } from '../webworker/workers/browser/libsession_worker_functions' ;
@ -946,32 +941,6 @@ async function updateOurProfileLegacyOrViaLibSession({
}
}
async function handleOurProfileUpdateLegacy (
sentAt : number | Long ,
configMessage : SignalService.ConfigurationMessage
) {
const userConfigLibsession = await ReleasedFeatures . checkIsUserConfigFeatureReleased ( ) ;
// we want to allow if we are not registered, as we might need to fetch an old config message (can be removed once we released for a weeks the libsession util)
if ( userConfigLibsession && ! isSignInByLinking ( ) ) {
return ;
}
const latestProfileUpdateTimestamp = getLastProfileUpdateTimestamp ( ) ;
if ( ! latestProfileUpdateTimestamp || sentAt > latestProfileUpdateTimestamp ) {
window ? . log ? . info (
` Handling our profileUdpate ourLastUpdate: ${ latestProfileUpdateTimestamp } , envelope sent at: ${ sentAt } `
) ;
const { profileKey , profilePicture , displayName } = configMessage ;
await updateOurProfileLegacyOrViaLibSession ( {
sentAt : toNumber ( sentAt ) ,
displayName ,
profileUrl : profilePicture ,
profileKey ,
priority : null , // passing null to say do not set the priority, as we do not get one from the legacy config message
} ) ;
}
}
async function handleGroupsAndContactsFromConfigMessageLegacy (
envelope : EnvelopePlus ,
configMessage : SignalService.ConfigurationMessage
@ -1141,7 +1110,6 @@ async function handleConfigurationMessageLegacy(
return ;
}
await handleOurProfileUpdateLegacy ( envelope . timestamp , configurationMessage ) ;
await handleGroupsAndContactsFromConfigMessageLegacy ( envelope , configurationMessage ) ;
await removeFromCache ( envelope ) ;
}