mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-08 06:00:59 -07:00
Fix button state for SSL certificate check
A copy paste error was introduced in PR #20338. PR #21659.
This commit is contained in:
parent
063f77bc6c
commit
878d829904
1 changed files with 1 additions and 1 deletions
|
@ -1915,7 +1915,7 @@ Path OptionsDialog::getFilter() const
|
|||
void OptionsDialog::webUIHttpsCertChanged(const Path &path)
|
||||
{
|
||||
const auto readResult = Utils::IO::readFile(path, Utils::Net::MAX_SSL_FILE_SIZE);
|
||||
const bool isCertValid = !Utils::SSLKey::load(readResult.value_or(QByteArray())).isNull();
|
||||
const bool isCertValid = Utils::Net::isSSLCertificatesValid(readResult.value_or(QByteArray()));
|
||||
|
||||
m_ui->textWebUIHttpsCert->setSelectedPath(path);
|
||||
m_ui->lblSslCertStatus->setPixmap(UIThemeManager::instance()->getScaledPixmap(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue