summaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
authorkali <kali@leap.se>2020-09-29 20:41:55 +0200
committerRuben Pollan <meskio@sindominio.net>2020-10-13 19:08:42 +0200
commit47ac0543b9ed2d4afb8814a19e2f4dc3c30030e1 (patch)
tree1634c42bebe7d8f59c7b56cb9800aba6ea4466f6 /gui
parent2cf32806dcce2d41920be28bd0e7d12e5d049357 (diff)
[feat] improve error handling during login
Diffstat (limited to 'gui')
-rw-r--r--gui/backend.go1
-rw-r--r--gui/qml/main.qml2
2 files changed, 1 insertions, 2 deletions
diff --git a/gui/backend.go b/gui/backend.go
index f8ee2bd..9453d88 100644
--- a/gui/backend.go
+++ b/gui/backend.go
@@ -3,7 +3,6 @@ package main
/* a wrapper around bitmask that exposes status to a QtQml gui.
Have a look at the pkg/backend module for further enlightment. */
-// #cgo CXXFLAGS: -mmacosx-version-min=10.10
import (
"C"
"unsafe"
diff --git a/gui/qml/main.qml b/gui/qml/main.qml
index 80f8e7c..ce72fff 100644
--- a/gui/qml/main.qml
+++ b/gui/qml/main.qml
@@ -48,7 +48,7 @@ ApplicationWindow {
function showInitFailure(msg) {
console.debug("ERRORS:", ctx.errors)
if (msg == undefined) {
- if (ctx.errors == 'bad_auth_502') {
+ if (ctx.errors == 'bad_auth_502' || ctx.errors == 'bad_auth_timeout') {
msg = qsTr("Oops! The authentication service seems down. Please try again later")
initFailure.title = qsTr("Service Error")
}