File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change 11# Release Notes
22
3+ ## 6.3.1
4+ ** Bug Fixes**
5+
6+ * Corrected failure to publish login failure event when an attempting to authenticate with an invalid JWT.
7+
38## 6.3.0
49** New Features**
510
Original file line number Diff line number Diff line change 1+ ** Bug Fixes**
2+
3+ * Corrected failure to publish login failure event when an attempting to authenticate with an invalid JWT.
Original file line number Diff line number Diff line change @@ -369,7 +369,7 @@ module.exports = (() => {
369369 // before the first invocation of pumpInboundProcessing could process the login
370370 // failure.
371371
372- const loginFailed = __inboundMessages . length > 0 && __inboundMessages [ 0 ] . indexOf ( '-' ) === 0 ;
372+ const loginFailed = __inboundMessages . length > 0 && __inboundMessages . some ( m => m . indexOf ( '-' ) === 0 ) ;
373373
374374 let messages = __inboundMessages ;
375375
You can’t perform that action at this time.
0 commit comments