Skip to content

Commit

Permalink
more lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmorris1975 committed Jan 5, 2023
1 parent 13c5f99 commit cd5313f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client/external/browser_client.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ func (c *browserClient) AuthenticateWithContext(context.Context) error {
// Listen to the browser events for the send to AWS with SAMLResponse
// get it and stuff it into our Clients SAML assertion.
func (c *browserClient) targetListener(ev interface{}) {
switch ev := ev.(type) { //nolint:gocritic
switch ev := ev.(type) { //nolint:gocritic
case *network.EventRequestWillBeSent:
if ev.Request.URL == `https://signin.aws.amazon.com/saml` {
escsaml := strings.Replace(ev.Request.PostData, `SAMLResponse=`, ``, 1)
Expand Down

0 comments on commit cd5313f

Please sign in to comment.