Use correct type on timer updates

This commit is contained in:
lilia 2017-01-03 14:14:55 +01:00
parent 05ed7c3822
commit d7f241ddee

View file

@ -200,7 +200,7 @@
this.save({ expireTimer: expireTimer });
var message = this.messageCollection.add({
conversationId : this.id,
type : 'outgoing',
type : received_at ? 'incoming' : 'outgoing',
sent_at : timestamp,
received_at : timestamp,
flags : textsecure.protobuf.DataMessage.Flags.EXPIRATION_TIMER_UPDATE,
@ -213,7 +213,7 @@
message.set({destination: this.id});
}
message.save();
if (!received_at) { // outgoing update, send it to the number/group
if (message.isOutgoing()) { // outgoing update, send it to the number/group
var sendFunc;
if (this.get('type') == 'private') {
sendFunc = textsecure.messaging.sendExpirationTimerUpdateToNumber;