mirror of
https://github.com/overte-org/overte.git
synced 2025-04-25 12:53:03 +02:00
fixing loadServerlessDomain function to be from 404 redirect
This commit is contained in:
parent
c47788efe4
commit
2e17140c07
2 changed files with 1 additions and 2 deletions
|
@ -3518,7 +3518,7 @@ void Application::setIsServerlessMode(bool serverlessDomain) {
|
|||
|
||||
void Application::loadServerlessDomain(QUrl domainURL, bool errorDomain) {
|
||||
if (QThread::currentThread() != thread()) {
|
||||
QMetaObject::invokeMethod(this, "loadServerlessDomain", Q_ARG(QUrl, domainURL));
|
||||
QMetaObject::invokeMethod(this, "loadServerlessDomain", Q_ARG(QUrl, domainURL), Q_ARG(bool, errorDomain));
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -436,7 +436,6 @@ public slots:
|
|||
void setIsServerlessMode(bool serverlessDomain);
|
||||
void loadServerlessDomain(QUrl domainURL, bool errorDomain = false);
|
||||
void setIsInterstitialMode(bool interstialMode);
|
||||
void loadServerlessDomain(QUrl domainURL);
|
||||
|
||||
void updateVerboseLogging();
|
||||
|
||||
|
|
Loading…
Reference in a new issue