Skip to content

Commit 2148ea7

Browse files
committed
Fix obselete TLS method
1 parent 0e1d99d commit 2148ea7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Meshtastic.Cli/CommandHandlers/MqttProxyCommandHandler.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ private static MqttClientOptions GetMqttClientOptions(DeviceStateContainer conta
9191

9292
if (container.LocalModuleConfig.Mqtt.TlsEnabled)
9393
{
94-
builder = builder.WithTls()
94+
builder = builder.WithTlsOptions(options => { })
9595
.WithTcpServer(host, Int32.Parse(port ?? "8883"));
9696
}
9797
else {

0 commit comments

Comments
 (0)