Fix udphop

This commit is contained in:
DHR60 2026-02-25 23:16:03 +08:00
parent 3a5293bf87
commit 8c219944ab
2 changed files with 2 additions and 2 deletions

View file

@ -472,7 +472,7 @@ public class HysteriaSettings4Ray
public class HysteriaUdpHop4Ray public class HysteriaUdpHop4Ray
{ {
public string? ports { get; set; } public string? port { get; set; }
public string? interval { get; set; } public string? interval { get; set; }
} }

View file

@ -601,7 +601,7 @@ public partial class CoreConfigV2rayService
{ {
udpHop = new HysteriaUdpHop4Ray udpHop = new HysteriaUdpHop4Ray
{ {
ports = ports.Replace(':', '-'), port = ports.Replace(':', '-'),
interval = hopInterval, interval = hopInterval,
}; };
} }