GlobalProtect-openconnect/GPClient/enhancedwebpage.cpp
2023-06-23 10:51:05 -03:00

10 lines
369 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() << "; " << certificateError.errorDescription();
return certificateError.deferred();
};