Don't bump blocks to top of chat list

This commit is contained in:
Elaine 2026-05-18 19:17:04 -04:00 committed by GitHub
parent e67abb1376
commit 88ed60064b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -127,7 +127,12 @@ extension TSInteraction {
switch self {
case let infoMessage as TSInfoMessage:
switch infoMessage.messageType {
case .typePinnedMessage:
case
.typePinnedMessage,
.blockedOtherUser,
.blockedGroup,
.unblockedOtherUser,
.unblockedGroup:
return false
default:
return shouldAppearInInbox(transaction: transaction)