Change last remaining QHttp over to HTTPS

master
Markus Koch 2022-01-03 16:55:56 +01:00
parent ed8a481b84
commit 3d1cd14162
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ KonaTags::KonaTags(KonaClient *Kc, QString Name, int Limit, int Page, QString Or
// Prepare HTTP
http = new QHttp(kc->getServer());
http = new QHttp(kc->getServer(), QHttp::ConnectionModeHttps);
connect(http, SIGNAL(responseHeaderReceived(QHttpResponseHeader)),
this, SLOT(responseHeaderReceived(QHttpResponseHeader)));
connect(http, SIGNAL(requestFinished(int,bool)),