chore: remove the wsl workaround since Qt 5.15.2 fixed the issue

This commit is contained in:
Gary Wang
2020-12-17 13:04:33 +08:00
parent 50457a7fc4
commit 01443d5ad4
3 changed files with 1 additions and 25 deletions

View File

@ -37,14 +37,6 @@ int main(int argc, char *argv[])
QList<QUrl> urlList;
for (const QString & str : urlStrList) {
QUrl url = QUrl::fromLocalFile(str);
#ifdef Q_OS_WIN
// TODO: remove this workaround when M$ change the "wsl$" hostname.
if (Q_UNLIKELY(str.startsWith(R"(\\wsl$\)"))) {
url.clear();
url.setScheme(QStringLiteral("qtbug-86277"));
url.setPath(str);
}
#endif // Q_OS_WIN
if (url.isValid()) {
urlList.append(url);
}