From c1d2f00c9b682b8f7a7a08b637eb610accbe8690 Mon Sep 17 00:00:00 2001 From: Roxanne Skelly Date: Mon, 24 Sep 2018 15:45:38 -0700 Subject: [PATCH] Fix url.toString() --- interface/src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index d3f37cff3a..2ae5dff573 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -3431,7 +3431,7 @@ void Application::handleSandboxStatus(QNetworkReply* reply) { if (url.scheme() == URL_SCHEME_HIFIAPP) { Setting::Handle("startUpApp").set(url.path()); } else { - addressLookupString = url; + addressLookupString = url.toString(); } }