mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-12-24 04:58:45 +00:00
Fix outgoing disappearing message export oddity check.
This commit is contained in:
committed by
Michelle Tang
parent
5f3b4056e9
commit
51897bb74f
@@ -549,7 +549,7 @@ private fun BackupMessageRecord.toBasicChatItemBuilder(selfRecipientId: Recipien
|
||||
dateReceived = dateReceived
|
||||
)
|
||||
|
||||
if (expiresInMs != null && outgoing?.sendStatus?.all { it.pending == null && it.failed == null } == true) {
|
||||
if (expiresInMs != null && outgoing?.sendStatus?.all { it.pending == null && it.failed == null } == true && expireStartDate == null) {
|
||||
Log.w(TAG, ExportOddities.outgoingMessageWasSentButTimerNotStarted(record.dateSent))
|
||||
expireStartDate = record.dateReceived
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user