fixed path issue in calling webui from rs-gui

This commit is contained in:
csoler 2019-12-21 18:11:43 +01:00
parent 11bc7a886a
commit 71149935f9
No known key found for this signature in database
GPG Key ID: 7BCA522266C0804C

View File

@ -157,6 +157,7 @@ QString WebuiPage::helpText() const
webuiUrl.setScheme("http");
webuiUrl.setHost(QString::fromStdString(rsJsonApi->getBindingAddress()));
webuiUrl.setPort(rsJsonApi->listeningPort());
webuiUrl.setPath("/index.html");
QDesktopServices::openUrl(webuiUrl);
}
else