Skip to content

Commit

Permalink
fix(StatusQ): Do not require ssl to check the internet connection
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjba committed Nov 7, 2024
1 parent adeebaf commit dbda82f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/StatusQ/src/networkchecker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit dbda82f

Please sign in to comment.