mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 21:15:55 +03:00
Use HTTPS for update check
This commit is contained in:
parent
e45dfdb3b2
commit
72f3b5457e
1 changed files with 1 additions and 1 deletions
|
@ -34,7 +34,7 @@ void UpdateDetector::versionCheck( Theme *theme )
|
|||
{
|
||||
connect(_accessManager, SIGNAL(finished(QNetworkReply*)), this,
|
||||
SLOT(slotVersionInfoArrived(QNetworkReply*)) );
|
||||
QUrl url(QLatin1String("http://download.owncloud.com/clientupdater.php"));
|
||||
QUrl url(QLatin1String("https://download.owncloud.com/clientupdater.php"));
|
||||
QString ver = QString::fromLatin1("%1.%2.%3").arg(MIRALL_VERSION_MAJOR).arg(MIRALL_VERSION_MINOR).arg(MIRALL_VERSION_MICRO);
|
||||
|
||||
QString platform = QLatin1String("stranger");
|
||||
|
|
Loading…
Reference in a new issue