fix kcp seed

This commit is contained in:
2dust 2020-09-01 08:38:06 +08:00
parent ab4d34b6ac
commit 0713c0c667
2 changed files with 5 additions and 2 deletions

View file

@ -551,7 +551,10 @@ namespace v2rayN.Handler
{
type = config.headerType()
};
kcpSettings.seed = config.path();
if (!Utils.IsNullOrEmpty(config.path()))
{
kcpSettings.seed = config.path();
}
streamSettings.kcpSettings = kcpSettings;
break;
//ws

View file

@ -32,4 +32,4 @@ using System.Runtime.InteropServices;
// 方法是按如下所示使用“*”:
//[assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("3.22")]
[assembly: AssemblyFileVersion("3.23")]