Skip to content

Commit

Permalink
fix kcp seed
Browse files Browse the repository at this point in the history
  • Loading branch information
2dust committed Sep 1, 2020
1 parent ab4d34b commit 0713c0c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion v2rayN/v2rayN/Handler/V2rayConfigHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,10 @@ private static int boundStreamSettings(Config config, string iobound, ref Stream
{
type = config.headerType()
};
kcpSettings.seed = config.path();
if (!Utils.IsNullOrEmpty(config.path()))
{
kcpSettings.seed = config.path();
}
streamSettings.kcpSettings = kcpSettings;
break;
//ws
Expand Down
2 changes: 1 addition & 1 deletion v2rayN/v2rayN/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@
// 方法是按如下所示使用“*”:
//[assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyFileVersion("3.22")]
[assembly: AssemblyFileVersion("3.23")]

0 comments on commit 0713c0c

Please sign in to comment.