diff --git a/UserInterface/UserInterface.csproj b/UserInterface/UserInterface.csproj index 9813764..73c7ed9 100644 --- a/UserInterface/UserInterface.csproj +++ b/UserInterface/UserInterface.csproj @@ -11,13 +11,13 @@ - - - - - + + + + + - + diff --git a/hass-workstation-service/Data/ConfigurationService.cs b/hass-workstation-service/Data/ConfigurationService.cs index 30536a5..dfdafc8 100644 --- a/hass-workstation-service/Data/ConfigurationService.cs +++ b/hass-workstation-service/Data/ConfigurationService.cs @@ -303,7 +303,8 @@ namespace hass_workstation_service.Data .WithTls(new MqttClientOptionsBuilderTlsParameters() { UseTls = configuredBroker.UseTLS, - AllowUntrustedCertificates = true + AllowUntrustedCertificates = true, + SslProtocol = configuredBroker.UseTLS ? System.Security.Authentication.SslProtocols.Tls12 : System.Security.Authentication.SslProtocols.None }) .WithCredentials(configuredBroker.Username, configuredBroker.Password.ToString()) .WithKeepAlivePeriod(TimeSpan.FromSeconds(30)) diff --git a/hass-workstation-service/hass-workstation-service.csproj b/hass-workstation-service/hass-workstation-service.csproj index e7d0933..fc2ee17 100644 --- a/hass-workstation-service/hass-workstation-service.csproj +++ b/hass-workstation-service/hass-workstation-service.csproj @@ -52,14 +52,14 @@ - + - - + + - - + +