diff --git a/app/src/main/java/com/keylesspalace/tusky/components/chat/ChatActivity.kt b/app/src/main/java/com/keylesspalace/tusky/components/chat/ChatActivity.kt index 176ed52f..29c07e9e 100644 --- a/app/src/main/java/com/keylesspalace/tusky/components/chat/ChatActivity.kt +++ b/app/src/main/java/com/keylesspalace/tusky/components/chat/ChatActivity.kt @@ -385,9 +385,9 @@ class ChatActivity: BottomSheetActivity(), enableSendButton() enableButton(attachmentButton, notHaveMedia, notHaveMedia) - enableButton(stickerButton, haveStickers, haveStickers) + enableButton(stickerButton, haveStickers && notHaveMedia, haveStickers && notHaveMedia) - if(!it.isNotEmpty()) { + if(!notHaveMedia) { val media = it[0] when(media.type) {