Skip to content

Commit

Permalink
SSL warning
Browse files Browse the repository at this point in the history
  • Loading branch information
davy7125 committed Aug 14, 2019
1 parent 672cef9 commit f9eb897
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sources/polyphone.pro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ DEFINES += USE_LOCAL_QCUSTOMPLOT

# Polyphone version
DEFINES += SOFT_VERSION=\\\"2.1.0\\\"
DEFINES += IDENTIFIER=\\\"\\\"
DEFINES += IDENTIFIER=\\\"beta\\\"

OBJECTS_DIR=generated_files
MOC_DIR=generated_files
Expand Down
2 changes: 2 additions & 0 deletions sources/repository/urlreader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ UrlReader::UrlReader(QString url) :
{
// Connect the network access manager
connect(_webCtrl, SIGNAL(finished(QNetworkReply*)), this, SLOT(fileDownloaded(QNetworkReply*)), Qt::DirectConnection);
if (!QSslSocket::supportsSsl())
qDebug() << "SSL not supported! Please provide the following library:" << QSslSocket::sslLibraryBuildVersionString();

// Prepare the timer
connect(_timer, SIGNAL(timeout()), this, SLOT(onTimeout()));
Expand Down

0 comments on commit f9eb897

Please sign in to comment.