|
|
|
@ -1226,7 +1226,7 @@ function insertContactIntoContactWrapper(
|
|
|
|
|
const dbApprovedMe = !!contact.didApproveMe || false;
|
|
|
|
|
const dbBlocked = blockedNumbers.includes(contact.id);
|
|
|
|
|
const priority = contact.priority || CONVERSATION_PRIORITIES.default;
|
|
|
|
|
// const expirationTimerSeconds = contact.expireTimer || 0;
|
|
|
|
|
const expirationTimerSeconds = contact.expireTimer || 0;
|
|
|
|
|
|
|
|
|
|
const wrapperContact = getContactInfoFromDBValues({
|
|
|
|
|
id: contact.id,
|
|
|
|
@ -1239,8 +1239,7 @@ function insertContactIntoContactWrapper(
|
|
|
|
|
dbProfileUrl: contact.avatarPointer || undefined,
|
|
|
|
|
priority,
|
|
|
|
|
dbCreatedAtSeconds: Math.floor((contact.active_at || Date.now()) / 1000),
|
|
|
|
|
|
|
|
|
|
// expirationTimerSeconds,
|
|
|
|
|
expirationTimerSeconds, //FIXME WILL add expirationMode here
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
@ -1265,7 +1264,7 @@ function insertContactIntoContactWrapper(
|
|
|
|
|
dbProfileUrl: undefined,
|
|
|
|
|
priority: CONVERSATION_PRIORITIES.default,
|
|
|
|
|
dbCreatedAtSeconds: Math.floor(Date.now() / 1000),
|
|
|
|
|
// expirationTimerSeconds: 0,
|
|
|
|
|
expirationTimerSeconds: 0, //FIXME WILL add expirationMode here
|
|
|
|
|
})
|
|
|
|
|
);
|
|
|
|
|
} catch (e) {
|
|
|
|
@ -1379,7 +1378,7 @@ function insertCommunityIntoWrapper(
|
|
|
|
|
function insertLegacyGroupIntoWrapper(
|
|
|
|
|
legacyGroup: Pick<
|
|
|
|
|
ConversationAttributes,
|
|
|
|
|
'id' | 'priority' | 'displayNameInProfile' | 'lastJoinedTimestamp' // | 'expireTimer'
|
|
|
|
|
'id' | 'priority' | 'displayNameInProfile' | 'lastJoinedTimestamp' | 'expireTimer'
|
|
|
|
|
> & { members: string; groupAdmins: string }, // members and groupAdmins are still stringified here
|
|
|
|
|
userGroupConfigWrapper: UserGroupsWrapperNode,
|
|
|
|
|
volatileInfoConfigWrapper: ConvoInfoVolatileWrapperNode,
|
|
|
|
@ -1388,7 +1387,7 @@ function insertLegacyGroupIntoWrapper(
|
|
|
|
|
const {
|
|
|
|
|
priority,
|
|
|
|
|
id,
|
|
|
|
|
// expireTimer,
|
|
|
|
|
expireTimer,
|
|
|
|
|
groupAdmins,
|
|
|
|
|
members,
|
|
|
|
|
displayNameInProfile,
|
|
|
|
@ -1403,7 +1402,7 @@ function insertLegacyGroupIntoWrapper(
|
|
|
|
|
const wrapperLegacyGroup = getLegacyGroupInfoFromDBValues({
|
|
|
|
|
id,
|
|
|
|
|
priority,
|
|
|
|
|
// expireTimer,
|
|
|
|
|
expireTimer, //FIXME WILL add expirationMode here
|
|
|
|
|
groupAdmins,
|
|
|
|
|
members,
|
|
|
|
|
displayNameInProfile,
|
|
|
|
@ -1631,7 +1630,7 @@ function updateToSessionSchemaVersion31(currentVersion: number, db: BetterSqlite
|
|
|
|
|
const ourDbProfileUrl = ourConversation.avatarPointer || '';
|
|
|
|
|
const ourDbProfileKey = fromHexToArray(ourConversation.profileKey || '');
|
|
|
|
|
const ourConvoPriority = ourConversation.priority;
|
|
|
|
|
// const ourConvoExpire = ourConversation.expireTimer || 0;
|
|
|
|
|
const ourConvoExpire = ourConversation.expireTimer || 0;
|
|
|
|
|
if (ourDbProfileUrl && !isEmpty(ourDbProfileKey)) {
|
|
|
|
|
userProfileWrapper.setUserInfo(
|
|
|
|
|
ourDbName,
|
|
|
|
@ -1639,8 +1638,8 @@ function updateToSessionSchemaVersion31(currentVersion: number, db: BetterSqlite
|
|
|
|
|
{
|
|
|
|
|
url: ourDbProfileUrl,
|
|
|
|
|
key: ourDbProfileKey,
|
|
|
|
|
}
|
|
|
|
|
// ourConvoExpire
|
|
|
|
|
},
|
|
|
|
|
ourConvoExpire
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|