Fixed a bug where the authentication methods for added ERI servers were not applied correctly

This commit is contained in:
Thorsten Sommer 2025-03-11 09:09:48 +01:00
parent c5acce7278
commit 6a1cfc1d01
No known key found for this signature in database
GPG Key ID: B0B7E2FC074BF1F5
2 changed files with 4 additions and 2 deletions

View File

@ -190,8 +190,9 @@ public partial class DataSourceERI_V1Dialog : ComponentBase, ISecretId
var cts = new CancellationTokenSource(TimeSpan.FromSeconds(14)); var cts = new CancellationTokenSource(TimeSpan.FromSeconds(14));
var dataSource = new DataSourceERI_V1 var dataSource = new DataSourceERI_V1
{ {
AuthMethod = this.dataAuthMethod,
Hostname = this.dataHostname, Hostname = this.dataHostname,
Port = this.dataPort Port = this.dataPort,
}; };
using var client = ERIClientFactory.Get(ERIVersion.V1, dataSource); using var client = ERIClientFactory.Get(ERIVersion.V1, dataSource);

View File

@ -1 +1,2 @@
# v0.9.33, build 208 (2025-03-xx xx:xx UTC) # v0.9.33, build 208 (2025-03-11 08:xx UTC)
- Fixed a bug where the authentication methods for added ERI servers were not applied correctly.