diff --git a/ts/textsecure/SendMessage.ts b/ts/textsecure/SendMessage.ts index ad22362f68..db4dd43e6a 100644 --- a/ts/textsecure/SendMessage.ts +++ b/ts/textsecure/SendMessage.ts @@ -1232,6 +1232,7 @@ export default class MessageSender { const proto = new window.textsecure.protobuf.DataMessage(); proto.body = 'TERMINATE'; proto.flags = window.textsecure.protobuf.DataMessage.Flags.END_SESSION; + proto.timestamp = timestamp; const logError = (prefix: string) => (error: Error) => { window.log.error(prefix, error && error.stack ? error.stack : error);