Fixed a bug concerning authentication methods for added ERI servers (#323)

This commit is contained in:
Thorsten Sommer 2025-03-11 09:11:06 +01:00 committed by GitHub
parent c5acce7278
commit 94028b2c06
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
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 dataSource = new DataSourceERI_V1
{
AuthMethod = this.dataAuthMethod,
Hostname = this.dataHostname,
Port = this.dataPort
Port = this.dataPort,
};
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.