mirror of
https://github.com/2dust/v2rayN.git
synced 2026-08-05 23:02:04 +03:00
Fix cert separator (#8837)
This commit is contained in:
@@ -218,7 +218,7 @@ public class AddServerViewModel : MyReactiveObject
|
||||
return;
|
||||
}
|
||||
|
||||
List<string> shaList = new();
|
||||
List<string> shaList = [];
|
||||
foreach (var cert in certList)
|
||||
{
|
||||
var sha = CertPemManager.GetCertSha256Thumbprint(cert);
|
||||
@@ -228,7 +228,7 @@ public class AddServerViewModel : MyReactiveObject
|
||||
}
|
||||
shaList.Add(sha);
|
||||
}
|
||||
CertSha = string.Join('~', shaList);
|
||||
CertSha = string.Join(',', shaList);
|
||||
}
|
||||
|
||||
private async Task FetchCert()
|
||||
|
||||
Reference in New Issue
Block a user