Compare commits

...

2 Commits

Author SHA1 Message Date
sxy
5915616ff0 Merge branch 'sxy' into dev 2025-03-07 09:26:59 +08:00
sxy
9c4a8e23c7 修改mode判断 2025-03-07 09:26:38 +08:00

View File

@ -195,7 +195,7 @@ func ExportRegister(c *gin.Context) {
// return
// }
var httpType string
if config.Data.System.IsHttps {
if config.Data.System.Mode == "prod" {
httpType = model.HttpsType
} else {
httpType = model.HttpType