We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d08adef commit c661289Copy full SHA for c661289
1 file changed
ui/scripts/sharedFunctions.js
@@ -845,10 +845,13 @@ var addGuestNetworkDialog = {
845
var property;
846
for (property in json) {
847
var errorObj = json[property];
848
- if (errorObj.errorcode == 401 && errorObj.errortext == "unable to verify user credentials and/or request signature")
+ if (errorObj.errorcode == 401 && errorObj.errortext == "unable to verify user credentials and/or request signature") {
849
+ $('#container').hide();
850
+
851
return _l('label.session.expired');
- else
852
+ } else {
853
return _s(errorObj.errortext);
854
+ }
855
}
856
} else {
857
return "";
0 commit comments