mirror of
https://github.com/2dust/v2rayN.git
synced 2025-10-27 02:34:41 +00:00
Compare commits
2 commits
68076ba3ab
...
d5e70daa60
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d5e70daa60 | ||
|
|
b6b3afb851 |
2 changed files with 2 additions and 2 deletions
|
|
@ -292,7 +292,7 @@ namespace ServiceLib.Models
|
|||
|
||||
public object response { get; set; }
|
||||
|
||||
public string domain { get; set; }
|
||||
public string? domain { get; set; }
|
||||
}
|
||||
|
||||
public class KcpSettings4Ray
|
||||
|
|
|
|||
|
|
@ -916,7 +916,7 @@ namespace ServiceLib.Services.CoreConfig
|
|||
kcpSettings.header = new Header4Ray
|
||||
{
|
||||
type = node.HeaderType,
|
||||
domain = host
|
||||
domain = host.IsNullOrEmpty() ? null : host
|
||||
};
|
||||
if (Utils.IsNotEmpty(path))
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue