Skip to content

Conversation

@gabriel-bolbotina
Copy link
Contributor

@gabriel-bolbotina gabriel-bolbotina commented Jan 8, 2026

video.mov

I tested it using docker nginx and an expired certificate

@gabriel-bolbotina gabriel-bolbotina linked an issue Jan 8, 2026 that may be closed by this pull request
@github-actions
Copy link

github-actions bot commented Jan 8, 2026

📦 Build Artifacts Ready

OS Status Build Info Workflow run
macOS Build 📬 Mergin Maps 61801 dmg Expires: 08/04/2026 #6180
linux Build 📭 Build not yet complete or failed.
win64 Build 📬 Mergin Maps 53731 win64 Expires: 08/04/2026 #5373
Android Build 📬 Mergin Maps 749051 APK [arm64-v8a] Expires: 08/04/2026 #7490
Android Build 📬 Mergin Maps 749011 APK [armeabi-v7a] Expires: 08/04/2026 #7490
iOS Build 📬 Build number: 26.01.843111 #8431

@github-actions
Copy link

📦 Build Artifacts Ready

OS Status Build Info Workflow run
macOS Build 📭 Build not yet complete or failed.
linux Build 📭 Build not yet complete or failed.
win64 Build 📬 Mergin Maps 54011 win64 Expires: 19/04/2026 #5401
Android Build 📬 Mergin Maps 751811 APK [armeabi-v7a] Expires: 19/04/2026 #7518
Android Build 📬 Mergin Maps 751851 APK [arm64-v8a] Expires: 19/04/2026 #7518
iOS Build 📬 Build number: 26.01.845911 #8459

Comment on lines +116 to +123
QObject::connect( mManager, &QNetworkAccessManager::sslErrors, this, []( QNetworkReply * reply, const QList<QSslError> &errors )
{
CoreUtils::log( "URL attempting to access:", reply->url().toString() );
for ( const auto &error : errors )
{
CoreUtils::log( "Error Description:", error.errorString() );
}
} );
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
QObject::connect( mManager, &QNetworkAccessManager::sslErrors, this, []( QNetworkReply * reply, const QList<QSslError> &errors )
{
CoreUtils::log( "URL attempting to access:", reply->url().toString() );
for ( const auto &error : errors )
{
CoreUtils::log( "Error Description:", error.errorString() );
}
} );
QObject::connect( mManager, &QNetworkAccessManager::sslErrors, this, []( const QNetworkReply *reply, const QList<QSslError> &errors )
{
CoreUtils::log( QStringLiteral( "SSL error" ), QStringLiteral( "URL attempting to access: " ) + reply->url().toString() );
for ( const auto &error : errors )
{
CoreUtils::log( QStringLiteral( "SSL error" ), QStringLiteral( "Error Description:" ) + error.errorString() );
}
} );

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Provide more details in case of SSL errors

3 participants