mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
feat(mqtt): Generate more specific client ID for MQTT proxy (#1912)
This commit is contained in:
parent
374d673107
commit
d091e549a1
1 changed files with 1 additions and 1 deletions
|
|
@ -74,7 +74,7 @@ class MQTTRepository @Inject constructor(
|
|||
}
|
||||
|
||||
val proxyMessageFlow: Flow<MqttClientProxyMessage> = callbackFlow {
|
||||
val ownerId = radioConfigRepository.myId.value ?: generateClientId()
|
||||
val ownerId = "MeshtasticAndroidMqttProxy-${radioConfigRepository.myId.value ?: generateClientId()}"
|
||||
val channelSet = radioConfigRepository.channelSetFlow.first()
|
||||
val mqttConfig = radioConfigRepository.moduleConfigFlow.first().mqtt
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue