mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 03:17:02 +02:00
Fix login failure handling in LoggingInBody.qml.
This commit is contained in:
parent
2be3011d28
commit
d6150c3684
1 changed files with 3 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
||||||
// Created by Wayne Chen on 10/18/18
|
// Created by Wayne Chen on 10/18/18
|
||||||
// Copyright 2018 High Fidelity, Inc.
|
// Copyright 2018 High Fidelity, Inc.
|
||||||
// Copyright 2020 Vircadia contributors.
|
// Copyright 2020 Vircadia contributors.
|
||||||
|
// Copyright 2024 Overte e.V.
|
||||||
//
|
//
|
||||||
// Distributed under the Apache License, Version 2.0.
|
// Distributed under the Apache License, Version 2.0.
|
||||||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||||
|
@ -377,13 +378,13 @@ Item {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function onHandleLoginCompleted(): {
|
function onHandleLoginCompleted() {
|
||||||
console.log("Login Succeeded");
|
console.log("Login Succeeded");
|
||||||
loggingInBody.loadingSuccess();
|
loggingInBody.loadingSuccess();
|
||||||
}
|
}
|
||||||
|
|
||||||
function onHandleLoginFailed() {
|
function onHandleLoginFailed() {
|
||||||
console.log("Login Failed")
|
console.log("Login Failed");
|
||||||
loggingInSpinner.visible = false;
|
loggingInSpinner.visible = false;
|
||||||
loggingInGlyph.visible = false;
|
loggingInGlyph.visible = false;
|
||||||
var errorString = "";
|
var errorString = "";
|
||||||
|
|
Loading…
Reference in a new issue