mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-02-07 06:12:56 -05:00
feat(mqtt): Generate more specific client ID for MQTT proxy (#1912)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user