diff --git a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationRequestItemView.kt b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationRequestItemView.kt
index c61dadfd9d8746719cd94616236a0bc6a1d0a337..e6b7c588f42c473139870fdaadefa816476f148f 100644
--- a/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationRequestItemView.kt
+++ b/briar-desktop/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationRequestItemView.kt
@@ -143,9 +143,9 @@ fun ConversationRequestItemView(
                     if (!m.answered) {
                         DialogButton(onClick = { onResponse(false) }, text = i18n("decline"), type = DESTRUCTIVE)
                         DialogButton(onClick = { onResponse(true) }, text = i18n("accept"), type = NEUTRAL)
-                    } else if (m.canBeOpened) {
+                    } /* else if (m.canBeOpened) {
                         DialogButton(onClick = onOpenRequestedShareable, text = i18n("open"), type = NEUTRAL)
-                    } else {
+                    } */ else {
                         Spacer(Modifier.height(8.dp))
                     }
                 }