File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -910,8 +910,7 @@ component accessors="true" singleton threadsafe {
910
910
results .messages = e .type & " :" & e .message ;
911
911
return results ;
912
912
}
913
- }
914
- catch ( TokenInvalidException e ) {
913
+ } catch ( TokenInvalidException e ) {
915
914
// Do we have autoRefreshValidator turned on and we have an incoming refresh token?
916
915
if ( variables .settings .jwt .enableAutoRefreshValidator && len ( discoverRefreshToken () ) ) {
917
916
autoRefreshTokens ();
@@ -920,8 +919,7 @@ component accessors="true" singleton threadsafe {
920
919
results .messages = e .type & " :" & e .message ;
921
920
return results ;
922
921
}
923
- }
924
- catch ( TokenNotFoundException e ) {
922
+ } catch ( TokenNotFoundException e ) {
925
923
// Do we have autoRefreshValidator turned on and we have an incoming refresh token?
926
924
if ( variables .settings .jwt .enableAutoRefreshValidator && len ( discoverRefreshToken () ) ) {
927
925
autoRefreshTokens ();
@@ -957,7 +955,7 @@ component accessors="true" singleton threadsafe {
957
955
return results ;
958
956
}
959
957
960
- private function autoRefreshTokens () {
958
+ private function autoRefreshTokens (){
961
959
// Try to Refresh the tokens
962
960
var newTokens = this .refreshToken ( discoverRefreshToken () );
963
961
// Setup payload + authenticate for current request
You can’t perform that action at this time.
0 commit comments