Merge pull request #1205 from bemusementpark/disable-unblock

Disable unblock button
This commit is contained in:
Morgan Pretty
2023-05-30 10:30:51 +10:00
committed by GitHub
13 changed files with 172 additions and 131 deletions

View File

@@ -202,6 +202,6 @@ interface StorageProtocol {
fun removeReaction(emoji: String, messageTimestamp: Long, author: String, notifyUnread: Boolean)
fun updateReactionIfNeeded(message: Message, sender: String, openGroupSentTimestamp: Long)
fun deleteReactions(messageId: Long, mms: Boolean)
fun unblock(toUnblock: List<Recipient>)
fun unblock(toUnblock: Iterable<Recipient>)
fun blockedContacts(): List<Recipient>
}