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
parent 705d595bdb
commit 8a55d063a5
No known key found for this signature in database
GPG Key ID: 6004079575C21C5D
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ bool NetworkChecker::isOnline() const
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);
}