From 80cae8e6205f49110ad83739add75cb7745d170e Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Mon, 16 Mar 2026 17:03:17 +0300 Subject: [PATCH] =?UTF-8?q?fix:=20fix=20wrong=20getChannelUrl()=20call=20c?= =?UTF-8?q?ausing=20loss=20of=20"add"=20flag=20and=20un=E2=80=A6=20(#4809)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/src/main/kotlin/org/meshtastic/app/ui/sharing/Channel.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/kotlin/org/meshtastic/app/ui/sharing/Channel.kt b/app/src/main/kotlin/org/meshtastic/app/ui/sharing/Channel.kt index e20413e8a..7cdbb825b 100644 --- a/app/src/main/kotlin/org/meshtastic/app/ui/sharing/Channel.kt +++ b/app/src/main/kotlin/org/meshtastic/app/ui/sharing/Channel.kt @@ -302,7 +302,7 @@ private const val QR_CODE_SIZE = 960 @Composable private fun ChannelShareDialog(channelSet: ChannelSet, shouldAddChannel: Boolean, onDismiss: () -> Unit) { - val commonUri = channelSet.getChannelUrl(shouldAddChannel) + val commonUri = channelSet.getChannelUrl(false, shouldAddChannel) val uriString = commonUri.toString() val qrCode = remember(uriString) { generateQrCode(uriString, QR_CODE_SIZE) } QrDialog(