Skip to content

Commit

Permalink
Fix obselete TLS method
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern committed Oct 25, 2024
1 parent 0e1d99d commit 2148ea7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Meshtastic.Cli/CommandHandlers/MqttProxyCommandHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private static MqttClientOptions GetMqttClientOptions(DeviceStateContainer conta

if (container.LocalModuleConfig.Mqtt.TlsEnabled)
{
builder = builder.WithTls()
builder = builder.WithTlsOptions(options => { })
.WithTcpServer(host, Int32.Parse(port ?? "8883"));
}
else {
Expand Down

0 comments on commit 2148ea7

Please sign in to comment.