Browse Source

Merge pull request #8066 from Chocobo1/url

WebUI: Only prepend scheme when it is not present. Closes #8057.
adaptive-webui-19844
Mike Tzou 7 years ago committed by GitHub
parent
commit
b8277614ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/webui/abstractwebapplication.cpp

4
src/webui/abstractwebapplication.cpp

@ -90,7 +90,9 @@ namespace @@ -90,7 +90,9 @@ namespace
{
inline QUrl urlFromHostHeader(const QString &hostHeader)
{
return QUrl(QLatin1String("http://") + hostHeader);
if (!hostHeader.contains(QLatin1String("://")))
return QUrl(QLatin1String("http://") + hostHeader);
return hostHeader;
}
}

Loading…
Cancel
Save