mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
fix: fix wrong getChannelUrl() call causing loss of "add" flag and un… (#4809)
This commit is contained in:
parent
5edb8abd05
commit
80cae8e620
1 changed files with 1 additions and 1 deletions
|
|
@ -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(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue