@ -447,10 +447,12 @@ export class MessageModel extends Backbone.Model<MessageAttributes> {
return'read';
}
constsent=this.get('sent');
// control messages we've sent, synced from the network appear to just have the sent_at field set.
constsentAt=this.get('sent_at');
// control messages we've sent, synced from the network appear to just have the sent_at field set, but our current devices also have this field set when we are just sending it... So idk how to have behavior work fine.,
@ -1237,7 +1239,7 @@ function insertContactIntoContactWrapper(
});
try{
console.info('Inserting contact into wrapper: ',wrapperContact);
hasDebugEnvVariable &&console.info('Inserting contact into wrapper: ',wrapperContact);
contactsConfigWrapper.set(wrapperContact);
}catch(e){
console.error(
@ -1245,7 +1247,7 @@ function insertContactIntoContactWrapper(
);
// the wrapper did not like something. Try again with just the boolean fields as it's most likely the issue is with one of the strings (which could be recovered)
try{
console.info('Inserting edited contact into wrapper: ',contact.id);
hasDebugEnvVariable &&console.info('Inserting edited contact into wrapper: ',contact.id);
contactsConfigWrapper.set(
getContactInfoFromDBValues({
id: contact.id,
@ -1286,6 +1288,7 @@ function insertContactIntoContactWrapper(
// at the moment, we cannot remove a contact from the conversation volatile info so there is nothing here
removeContactFromWrapper,
// legacy group
removeLegacyGroupFromWrapper,// a group can be removed but also just marked hidden, so only call this function when the group is completely removed // TODOLATER