mirror of
https://github.com/2dust/v2rayN.git
synced 2026-02-28 05:03:02 +00:00
Fix cert separator (#8837)
Some checks failed
release Linux / build (Release) (push) Has been cancelled
release macOS / build (Release) (push) Has been cancelled
release Windows desktop (Avalonia UI) / build (Release) (push) Has been cancelled
release Windows / build (Release) (push) Has been cancelled
release Linux / rpm (push) Has been cancelled
Some checks failed
release Linux / build (Release) (push) Has been cancelled
release macOS / build (Release) (push) Has been cancelled
release Windows desktop (Avalonia UI) / build (Release) (push) Has been cancelled
release Windows / build (Release) (push) Has been cancelled
release Linux / rpm (push) Has been cancelled
This commit is contained in:
parent
ac43bb051d
commit
3a5293bf87
2 changed files with 3 additions and 3 deletions
|
|
@ -66,7 +66,7 @@ public class Hysteria2Fmt : BaseFmt
|
||||||
if (!item.CertSha.IsNullOrEmpty())
|
if (!item.CertSha.IsNullOrEmpty())
|
||||||
{
|
{
|
||||||
var sha = item.CertSha;
|
var sha = item.CertSha;
|
||||||
var idx = sha.IndexOf('~');
|
var idx = sha.IndexOf(',');
|
||||||
if (idx > 0)
|
if (idx > 0)
|
||||||
{
|
{
|
||||||
sha = sha[..idx];
|
sha = sha[..idx];
|
||||||
|
|
|
||||||
|
|
@ -218,7 +218,7 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
List<string> shaList = new();
|
List<string> shaList = [];
|
||||||
foreach (var cert in certList)
|
foreach (var cert in certList)
|
||||||
{
|
{
|
||||||
var sha = CertPemManager.GetCertSha256Thumbprint(cert);
|
var sha = CertPemManager.GetCertSha256Thumbprint(cert);
|
||||||
|
|
@ -228,7 +228,7 @@ public class AddServerViewModel : MyReactiveObject
|
||||||
}
|
}
|
||||||
shaList.Add(sha);
|
shaList.Add(sha);
|
||||||
}
|
}
|
||||||
CertSha = string.Join('~', shaList);
|
CertSha = string.Join(',', shaList);
|
||||||
}
|
}
|
||||||
|
|
||||||
private async Task FetchCert()
|
private async Task FetchCert()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue