diff --git a/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationRequestItemView.kt b/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationRequestItemView.kt index 534016ebd0d3db2bd654e7d72f457940eb4a1fa7..ff66f9685c3cee9af1132ae486aca4baab4895c8 100644 --- a/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationRequestItemView.kt +++ b/src/main/kotlin/org/briarproject/briar/desktop/conversation/ConversationRequestItemView.kt @@ -125,7 +125,7 @@ fun ConversationRequestItemView( Row(modifier = Modifier.align(statusAlignment)) { if (!m.answered) { DialogButton(onClick = { onResponse(false) }, text = i18n("decline"), type = DESTRUCTIVE) - DialogButton(onClick = { onResponse(false) }, text = i18n("accept"), type = NEUTRAL) + DialogButton(onClick = { onResponse(true) }, text = i18n("accept"), type = NEUTRAL) } else if (m.canBeOpened) { DialogButton(onClick = onOpenRequestedShareable, text = i18n("open"), type = NEUTRAL) } else {