mirror of
https://github.com/yuezk/GlobalProtect-openconnect.git
synced 2025-04-02 18:31:50 -04:00
10 lines
369 B
C++
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();
|
|
};
|