Message Send Log: Increase retention length
This commit is contained in:
parent
12d2b1bf7c
commit
5069f48cf0
4 changed files with 26 additions and 11 deletions
|
@ -1203,7 +1203,10 @@ export class ConversationModel extends window.Backbone
|
|||
|
||||
const { ContentHint } = Proto.UnidentifiedSenderMessage.Message;
|
||||
|
||||
const sendOptions = await getSendOptions(this.attributes);
|
||||
const sendOptions = {
|
||||
...(await getSendOptions(this.attributes)),
|
||||
online: true,
|
||||
};
|
||||
if (isDirectConversation(this.attributes)) {
|
||||
handleMessageSend(
|
||||
window.textsecure.messaging.sendMessageProtoAndWait({
|
||||
|
@ -1212,10 +1215,7 @@ export class ConversationModel extends window.Backbone
|
|||
proto: contentMessage,
|
||||
contentHint: ContentHint.IMPLICIT,
|
||||
groupId: undefined,
|
||||
options: {
|
||||
...sendOptions,
|
||||
online: true,
|
||||
},
|
||||
options: sendOptions,
|
||||
}),
|
||||
{ messageIds: [], sendType: 'typing' }
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue