GUAC-1430: Always show connection closed status after authentication update attempt.

This commit is contained in:
James Muehlner
2015-12-09 21:41:47 -08:00
parent f3ff3f62c7
commit 28ff969d32

View File

@@ -441,8 +441,8 @@ angular.module('client').controller('clientController', ['$scope', '$routeParams
// Re-authenticate to verify auth status at end of connection // Re-authenticate to verify auth status at end of connection
authenticationService.updateCurrentToken($location.search()) authenticationService.updateCurrentToken($location.search())
// If authentication is OK, show the requested status // Show the requested status once the authentication check has finished
.then(function authenticationCheckSuccessful() { ['finally'](function authenticationCheckComplete() {
guacNotification.showStatus(status); guacNotification.showStatus(status);
}); });