增加 DisablePing 字段以控制是否发送自定义 Ping

This commit is contained in:
RedwindA
2025-07-18 23:38:35 +08:00
parent af65271804
commit 4d9b5bcf48
3 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -54,7 +54,7 @@ func StreamScannerHandler(c *gin.Context, resp *http.Response, info *relaycommon
)
generalSettings := operation_setting.GetGeneralSetting()
pingEnabled := generalSettings.PingIntervalEnabled
pingEnabled := generalSettings.PingIntervalEnabled && !info.DisablePing
pingInterval := time.Duration(generalSettings.PingIntervalSeconds) * time.Second
if pingInterval <= 0 {
pingInterval = DefaultPingInterval