Skip to content

Commit

Permalink
Apply the workaround to Qt 5.9.1 #14
Browse files Browse the repository at this point in the history
The use of 5.7.1 was for testing only.
  • Loading branch information
pcolby committed Jul 27, 2017
1 parent 2414c61 commit 4065c88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/awsabstractsignature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ QString AwsAbstractSignaturePrivate::canonicalPath(const QUrl &url) const
// attempt to support UNC paths. This is probably a bug in Qt, and not the
// same as the one mentioned above (which still appears to be in issue in
// Qt 5.9.1 also).
#if QT_VERSION == QT_VERSION_CHECK(5, 7, 1)
#if QT_VERSION == QT_VERSION_CHECK(5, 9, 1)
if (path.endsWith(QLatin1String("/."))) {
path.chop(1); // Remove the trailing '.' character.
qDebug() << "canonicalPath" << "path.chop" << path;
Expand Down

0 comments on commit 4065c88

Please sign in to comment.