fix(StatusQ): Do not require ssl to check the internet connection

This commit is contained in:
Alex Jbanca 2024-10-25 12:28:56 +03:00 committed by Alex Jbanca
parent 514428ee57
commit 8a81a5fc92
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ bool NetworkChecker::isOnline() const
void NetworkChecker::checkNetwork() void NetworkChecker::checkNetwork()
{ {
QNetworkRequest request(QUrl("https://fedoraproject.org/static/hotspot.txt")); QNetworkRequest request(QUrl(QStringLiteral("http://fedoraproject.org/static/hotspot.txt")));
manager.get(request); manager.get(request);
} }