fix: the issue of home page port being out of sync (#4271)

* synchronize port 7897

* Update UPDATELOG.md
This commit is contained in:
Dyna
2025-07-30 19:59:11 +08:00
committed by GitHub
parent 1dfba159e0
commit 5131d37d58
4 changed files with 4 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ impl Default for AsyncSysproxy {
Self {
enable: false,
host: "127.0.0.1".to_string(),
port: 7890,
port: 7897,
bypass: String::new(),
}
}

View File

@@ -58,7 +58,7 @@ impl Default for ProxyState {
sys_proxy: Sysproxy {
enable: false,
host: "127.0.0.1".to_string(),
port: 7890,
port: 7897,
bypass: "".to_string(),
},
last_updated: std::time::Instant::now(),