mirror of
https://github.com/SchildiChat/SchildiChat-android.git
synced 2024-12-25 17:12:38 +01:00
Fix ChunkEntity.isMoreRecentThan() if both chunks linked to last forward
Imagine scenario: [this] -> [chunkToCheck] -> [lastForwardChunk] Then, both `isLastForward` checks will not return, and also the `chunkToCheck.doesNextChunksVerifyCondition { it == this }` will return false. Since both chunks are connected to the last forward chunk, `isMoreRecent()` will still return `true`, which is wrong in this case. So do not only check if chunkToCheck has this as any of the next chunks, but also the other way round.
This commit is contained in:
parent
0564942b0c
commit
6ba02629ec
@ -223,6 +223,9 @@ internal fun ChunkEntity.isMoreRecentThan(chunkToCheck: ChunkEntity): Boolean {
|
|||||||
if (chunkToCheck.doesNextChunksVerifyCondition { it == this }) {
|
if (chunkToCheck.doesNextChunksVerifyCondition { it == this }) {
|
||||||
return true
|
return true
|
||||||
}
|
}
|
||||||
|
if (this.doesNextChunksVerifyCondition { it == chunkToCheck }) {
|
||||||
|
return false
|
||||||
|
}
|
||||||
// Otherwise check if this chunk is linked to last forward
|
// Otherwise check if this chunk is linked to last forward
|
||||||
if (this.doesNextChunksVerifyCondition { it.isLastForward }) {
|
if (this.doesNextChunksVerifyCondition { it.isLastForward }) {
|
||||||
return true
|
return true
|
||||||
|
Loading…
Reference in New Issue
Block a user