Fix inverted boolean

This commit is contained in:
nielsandriesse 2020-10-27 09:59:29 +11:00
parent 4e69a538cb
commit a959c02252

View File

@ -25,7 +25,7 @@ class PublicChatManager(private val context: Context) {
refreshChatsAndPollers()
for ((threadID, chat) in chats) {
val poller = pollers[threadID]
areAllCaughtUp = if(poller != null) areAllCaughtUp && poller.isCaughtUp else false
areAllCaughtUp = if (poller != null) areAllCaughtUp && poller.isCaughtUp else true
}
return areAllCaughtUp
}