Timeline : Uncomment liveChunk to make pagination working

This commit is contained in:
ganfra 2019-07-05 17:27:24 +02:00
parent f01e796271
commit 79a704d240
1 changed files with 1 additions and 1 deletions

View File

@ -430,7 +430,7 @@ internal class DefaultTimeline(
* This has to be called on TimelineThread as it access realm live results
*/
private fun getLiveChunk(): ChunkEntity? {
return null //return liveEvents.firstOrNull()?.chunk?.firstOrNull()
return liveEvents.firstOrNull()?.chunk?.firstOrNull()
}

/**