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

@ -116,7 +116,7 @@ async function insertGroupsFromDBIntoWrapperAndRefresh(convoId: string): Promise
priority: foundConvo.get('priority'),
members: foundConvo.get('members') || [],
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'),
encPubkeyHex: encryptionKeyPair?.publicHex || '',
encSeckeyHex: encryptionKeyPair?.privateHex || '',

Loading…
Cancel
Save