mirror of
https://github.com/PrismLauncher/PrismLauncher.git
synced 2026-06-29 09:59:59 +03:00
GH-3131 fix not working with proxy ports > 32767
This commit is contained in:
parent
5ca5661c23
commit
997c25620a
1 changed files with 1 additions and 1 deletions
|
|
@ -95,7 +95,7 @@ void ProxyPage::loadSettings()
|
|||
ui->proxyHTTPBtn->setChecked(true);
|
||||
|
||||
ui->proxyAddrEdit->setText(s->get("ProxyAddr").toString());
|
||||
ui->proxyPortEdit->setValue(s->get("ProxyPort").value<qint16>());
|
||||
ui->proxyPortEdit->setValue(s->get("ProxyPort").value<uint16_t>());
|
||||
ui->proxyUserEdit->setText(s->get("ProxyUser").toString());
|
||||
ui->proxyPassEdit->setText(s->get("ProxyPass").toString());
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue