mirror of
https://github.com/lubosz/overte.git
synced 2025-04-16 15:30:11 +02:00
Fix missing "no connection" dialog for invalid serverless domain URLs
This commit is contained in:
parent
82a0308a64
commit
166c7809a9
1 changed files with 3 additions and 1 deletions
|
@ -209,7 +209,9 @@ void DomainHandler::setURLAndID(QUrl domainURL, QUuid domainID) {
|
|||
}
|
||||
|
||||
// if it's in the error state, reset and try again.
|
||||
if ((_domainURL != domainURL || _sockAddr.getPort() != domainPort) || _isInErrorState) {
|
||||
if (_domainURL != domainURL
|
||||
|| (_sockAddr.getPort() != domainPort && domainURL.scheme() == URL_SCHEME_HIFI)
|
||||
|| _isInErrorState) {
|
||||
// re-set the domain info so that auth information is reloaded
|
||||
hardReset("Changing domain URL");
|
||||
|
||||
|
|
Loading…
Reference in a new issue