mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-04-19 00:01:08 +01:00
Fix read calls being shown as unread in backups.
This commit is contained in:
committed by
Greyson Parrelli
parent
bf0c9ec1c7
commit
cc7b26d342
@@ -204,7 +204,8 @@ class CallEventCacheTest {
|
||||
isGroupCallActive: Boolean = false,
|
||||
didLocalUserJoin: Boolean = false,
|
||||
body: String? = null,
|
||||
decryptedGroupBytes: ByteArray? = null
|
||||
decryptedGroupBytes: ByteArray? = null,
|
||||
read: Boolean = true
|
||||
): CallEventCache.CacheRecord {
|
||||
return CallEventCache.CacheRecord(
|
||||
rowId = callId,
|
||||
@@ -219,7 +220,8 @@ class CallEventCacheTest {
|
||||
isGroupCallActive = isGroupCallActive,
|
||||
didLocalUserJoin = didLocalUserJoin,
|
||||
body = body,
|
||||
decryptedGroupBytes = decryptedGroupBytes
|
||||
decryptedGroupBytes = decryptedGroupBytes,
|
||||
read = read
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user