Fix synced sent media messages expiring too fast
Fixes #6928 Closes #7135
This commit is contained in:
parent
9a8d058051
commit
3df9112cf8
1 changed files with 1 additions and 1 deletions
|
@ -608,7 +608,7 @@ public class PushDecryptJob extends ContextJob {
|
||||||
.getExpiringMessageManager()
|
.getExpiringMessageManager()
|
||||||
.scheduleDeletion(messageId, true,
|
.scheduleDeletion(messageId, true,
|
||||||
message.getExpirationStartTimestamp(),
|
message.getExpirationStartTimestamp(),
|
||||||
message.getMessage().getExpiresInSeconds());
|
message.getMessage().getExpiresInSeconds() * 1000);
|
||||||
}
|
}
|
||||||
|
|
||||||
return threadId;
|
return threadId;
|
||||||
|
|
Loading…
Add table
Reference in a new issue