mirror of
https://github.com/chenx-dust/EZ4Connect.git
synced 2026-09-20 10:23:33 +08:00
fix: change loopback listen addr to 127.0.0.1 to fix windows system proxy issure
This commit is contained in:
@@ -116,7 +116,7 @@ void MainWindow::initZjuConnect()
|
||||
|
||||
auto startZjuConnect = [this](const QString &username, const QString &password) {
|
||||
QString program_path = Utils::getCorePath();
|
||||
QString bind_prefix = settings->value("ZJUConnect/OutsideAccess", false).toBool() ? "[::]:" : "[::1]:";
|
||||
QString bind_prefix = settings->value("ZJUConnect/OutsideAccess", false).toBool() ? "[::]:" : "127.0.0.1:";
|
||||
|
||||
isZjuConnectLinked = true;
|
||||
ui->pushButton1->setText("断开服务器");
|
||||
|
||||
Reference in New Issue
Block a user