This commit is contained in:
wjqserver
2025-06-15 16:42:42 +08:00
parent 97b1f69f99
commit 91c3ad7fd8
3 changed files with 7 additions and 2 deletions

View File

@@ -1,5 +1,10 @@
# 更新日志
3.5.6 - 2025-06-15
---
- FIX: 修正blob重写的生成问题
- CHANGE: 改进302重定向逻辑
25w48c - 2025-06-15
---
- PRE-RELEASE: 此版本是v3.5.6预发布版本,请勿在生产环境中使用;

View File

@@ -1 +1 @@
3.5.5
3.5.6

View File

@@ -81,7 +81,7 @@ func setRequestHeaders(c *app.RequestContext, req *http.Request, cfg *config.Con
headerValue := string(value)
req.Header.Set(headerKey, headerValue)
})
for key := range cloneHeadersToRemove {
for key := range reqHeadersToRemove {
req.Header.Del(key)
}
}