mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
9 lines
385 B
C++
9 lines
385 B
C++
#include "enhancedwebpage.h"
|
|
#include <QWebEngineCertificateError>
|
|
#include <plog/Log.h>
|
|
|
|
bool EnhancedWebPage::certificateError(const QWebEngineCertificateError &certificateError) {
|
|
LOGI << "An error occurred during certificate verification for " << certificateError.url().toString() << "; " << certificateError.errorDescription();
|
|
return certificateError.isOverridable();
|
|
};
|