Fix url.toString()

This commit is contained in:
Roxanne Skelly 2018-09-24 15:45:38 -07:00
parent 16dba169c5
commit c1d2f00c9b

View file

@ -3431,7 +3431,7 @@ void Application::handleSandboxStatus(QNetworkReply* reply) {
if (url.scheme() == URL_SCHEME_HIFIAPP) { if (url.scheme() == URL_SCHEME_HIFIAPP) {
Setting::Handle<QVariant>("startUpApp").set(url.path()); Setting::Handle<QVariant>("startUpApp").set(url.path());
} else { } else {
addressLookupString = url; addressLookupString = url.toString();
} }
} }