mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-11-24 02:06:07 +03: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
a3ac692c25
commit
5dd41f506e
1 changed files with 1 additions and 1 deletions
|
@ -1938,7 +1938,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…
Reference in a new issue