Compare commits

...

2 commits

Author SHA1 Message Date
2dust
d5e70daa60
Update CoreConfigV2rayService.cs 2025-03-04 10:31:54 +08:00
2dust
b6b3afb851
Update V2rayConfig.cs 2025-03-04 10:28:37 +08:00
2 changed files with 2 additions and 2 deletions

View file

@ -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

View file

@ -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))
{