Fixed inverted config dropping flags

This commit is contained in:
Morgan Pretty 2023-06-09 17:10:32 +10:00
parent 6af009c9ee
commit 7c0dbcf1f5
1 changed files with 2 additions and 2 deletions

View File

@ -105,8 +105,8 @@ fun MessageReceiver.messageIsOutdated(message: Message, threadId: Long, openGrou
)
// If the thread is visible or the message was sent more recently than the last config message (minus
// buffer period) then we should process the message, if not then throw as the message is outdated
return (conversationVisibleInConfig || canPerformChange)
// buffer period) then we should process the message, if not then the message is outdated
return (!conversationVisibleInConfig && !canPerformChange)
}
// region Control Messages