mirror of
https://github.com/clash-verge-rev/clash-verge-rev.git
synced 2026-01-29 00:35:38 +08:00
fix: the issue of home page port being out of sync (#4271)
* synchronize port 7897 * Update UPDATELOG.md
This commit is contained in:
@@ -45,6 +45,7 @@
|
|||||||
- 修复 `IPC` 迁移后节点测速功能异常
|
- 修复 `IPC` 迁移后节点测速功能异常
|
||||||
- 修复 `IPC` 迁移后连接上下行速率计算功能异常
|
- 修复 `IPC` 迁移后连接上下行速率计算功能异常
|
||||||
- 修复 `External-Controller-Cors` 无法保存所需前置条件
|
- 修复 `External-Controller-Cors` 无法保存所需前置条件
|
||||||
|
- 修复首页端口不一致问题
|
||||||
|
|
||||||
### 🔧 技术改进
|
### 🔧 技术改进
|
||||||
|
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ impl Default for AsyncSysproxy {
|
|||||||
Self {
|
Self {
|
||||||
enable: false,
|
enable: false,
|
||||||
host: "127.0.0.1".to_string(),
|
host: "127.0.0.1".to_string(),
|
||||||
port: 7890,
|
port: 7897,
|
||||||
bypass: String::new(),
|
bypass: String::new(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -58,7 +58,7 @@ impl Default for ProxyState {
|
|||||||
sys_proxy: Sysproxy {
|
sys_proxy: Sysproxy {
|
||||||
enable: false,
|
enable: false,
|
||||||
host: "127.0.0.1".to_string(),
|
host: "127.0.0.1".to_string(),
|
||||||
port: 7890,
|
port: 7897,
|
||||||
bypass: "".to_string(),
|
bypass: "".to_string(),
|
||||||
},
|
},
|
||||||
last_updated: std::time::Instant::now(),
|
last_updated: std::time::Instant::now(),
|
||||||
|
|||||||
@@ -156,7 +156,7 @@ const rules: {
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "IN-PORT",
|
name: "IN-PORT",
|
||||||
example: "7890",
|
example: "7897",
|
||||||
validator: (value) => portValidator(value),
|
validator: (value) => portValidator(value),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user