fix: spaces on fixme comments

pull/2861/head
William Grant 2 years ago
parent 20e1895a50
commit 5762342e03

@ -1237,7 +1237,7 @@ function insertContactIntoContactWrapper(
dbProfileUrl: contact.avatarPointer || undefined, dbProfileUrl: contact.avatarPointer || undefined,
priority, priority,
dbCreatedAtSeconds: Math.floor((contact.active_at || Date.now()) / 1000), dbCreatedAtSeconds: Math.floor((contact.active_at || Date.now()) / 1000),
expirationTimerSeconds, //FIXME WILL add expirationMode here expirationTimerSeconds, // FIXME WILL add expirationMode here
}); });
try { try {
@ -1262,7 +1262,7 @@ function insertContactIntoContactWrapper(
dbProfileUrl: undefined, dbProfileUrl: undefined,
priority: CONVERSATION_PRIORITIES.default, priority: CONVERSATION_PRIORITIES.default,
dbCreatedAtSeconds: Math.floor(Date.now() / 1000), dbCreatedAtSeconds: Math.floor(Date.now() / 1000),
expirationTimerSeconds: 0, //FIXME WILL add expirationMode here expirationTimerSeconds: 0, // FIXME WILL add expirationMode here
}) })
); );
} catch (err2) { } catch (err2) {
@ -1400,7 +1400,7 @@ function insertLegacyGroupIntoWrapper(
const wrapperLegacyGroup = getLegacyGroupInfoFromDBValues({ const wrapperLegacyGroup = getLegacyGroupInfoFromDBValues({
id, id,
priority, priority,
expireTimer, //FIXME WILL add expirationMode here expireTimer, // FIXME WILL add expirationMode here
groupAdmins, groupAdmins,
members, members,
displayNameInProfile, displayNameInProfile,

@ -116,7 +116,7 @@ async function insertGroupsFromDBIntoWrapperAndRefresh(convoId: string): Promise
priority: foundConvo.get('priority'), priority: foundConvo.get('priority'),
members: foundConvo.get('members') || [], members: foundConvo.get('members') || [],
groupAdmins: foundConvo.get('groupAdmins') || [], groupAdmins: foundConvo.get('groupAdmins') || [],
expireTimer: foundConvo.get('expireTimer'), //FIXME WILL add expirationMode here expireTimer: foundConvo.get('expireTimer'), // FIXME WILL add expirationMode here
displayNameInProfile: foundConvo.get('displayNameInProfile'), displayNameInProfile: foundConvo.get('displayNameInProfile'),
encPubkeyHex: encryptionKeyPair?.publicHex || '', encPubkeyHex: encryptionKeyPair?.publicHex || '',
encSeckeyHex: encryptionKeyPair?.privateHex || '', encSeckeyHex: encryptionKeyPair?.privateHex || '',

Loading…
Cancel
Save