Commit fa1f02fd authored by Don Gagne's avatar Don Gagne

Add https support

parent a58e3995
......@@ -58,7 +58,7 @@ bool QGCFileDownload::download(const QString& remoteFile)
localFile += "/" + remoteFileName;
QUrl remoteUrl;
if (remoteFile.startsWith("http:")) {
if (remoteFile.startsWith("http:") || remoteFile.startsWith("https:")) {
remoteUrl.setUrl(remoteFile);
} else {
remoteUrl = QUrl::fromLocalFile(remoteFile);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment