mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-04 18:39:23 +02:00
Merge branch 'interstitalMerged' into interstitalMerged
This commit is contained in:
commit
a55849d24b
2 changed files with 0 additions and 4 deletions
|
@ -6421,7 +6421,6 @@ void Application::clearDomainAvatars() {
|
|||
void Application::domainURLChanged(QUrl domainURL) {
|
||||
// disable physics until we have enough information about our new location to not cause craziness.
|
||||
resetPhysicsReadyInformation();
|
||||
auto urlStr = domainURL.toString().toStdString();
|
||||
setIsServerlessMode(domainURL.scheme() != URL_SCHEME_HIFI);
|
||||
if (isServerlessMode()) {
|
||||
loadServerlessDomain(domainURL);
|
||||
|
@ -6432,7 +6431,6 @@ void Application::domainURLChanged(QUrl domainURL) {
|
|||
void Application::goToErrorDomainURL(QUrl errorDomainURL) {
|
||||
// disable physics until we have enough information about our new location to not cause craziness.
|
||||
resetPhysicsReadyInformation();
|
||||
auto urlStr = errorDomainURL.toString().toStdString();
|
||||
setIsServerlessMode(errorDomainURL.scheme() != URL_SCHEME_HIFI);
|
||||
if (isServerlessMode()) {
|
||||
loadServerlessDomain(errorDomainURL, true);
|
||||
|
|
|
@ -48,7 +48,6 @@ QString AddressManager::getProtocol() const {
|
|||
QUrl AddressManager::currentAddress(bool domainOnly) const {
|
||||
QUrl hifiURL = _domainURL;
|
||||
|
||||
auto urlStr = hifiURL.toString().toStdString();
|
||||
|
||||
if (!domainOnly && hifiURL.scheme() == URL_SCHEME_HIFI) {
|
||||
hifiURL.setPath(currentPath());
|
||||
|
@ -156,7 +155,6 @@ void AddressManager::goForward() {
|
|||
|
||||
void AddressManager::goToLastAddress() {
|
||||
// this should always return something as long as the URL isn't empty.
|
||||
auto urlStr = _lastVisitedURL.toString().toStdString();
|
||||
handleUrl(_lastVisitedURL, LookupTrigger::AttemptedRefresh);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue