Disable unblock button

This commit is contained in:
andrew
2023-05-19 23:44:07 +09:30
parent f64fe4b652
commit 30d748e147
9 changed files with 98 additions and 79 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>
}