// we don't have info about who made the change and when, when we get a change from a config message, so do not add a control message
// TODO NOTE We might not show it in the UI but still need to process it using the senttimestamp as the lastchange timestamp for config messages
@ -925,7 +930,7 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {
}
// if change was made remotely, don't send it to the contact/group
if(receivedAt ||fromSync ||fromConfigMessage){
if(fromSync ||fromConfigMessage){
window.log.debug(
`WIP: updateExpireTimer() Not sending an ExpireTimerUpdate message because the change was made remotely receivedAt:${receivedAt} fromSync:${fromSync} fromConfigMessage:${fromConfigMessage}`
);
@ -948,17 +953,22 @@ export class ConversationModel extends Backbone.Model<ConversationAttributes> {