Add wsl linter and fix

Signed-off-by: Émile Ré <emile@probo.com>
This commit is contained in:
Émile Ré
2026-05-19 14:51:08 +04:00
parent eedfdcecc8
commit 9156d6a16a
882 changed files with 6068 additions and 574 deletions

View File

@@ -120,9 +120,11 @@ func ParseSlackTokenResponse(body []byte, oauth2Conn OAuth2Connection, organizat
if slackResponse.Error != "" {
return nil, nil, fmt.Errorf("cannot complete Slack OAuth2 flow: %s", slackResponse.Error)
}
if !slackResponse.Ok {
return nil, nil, fmt.Errorf("cannot complete Slack OAuth2 flow: ok=false")
}
if oauth2Conn.AccessToken == "" {
return nil, nil, fmt.Errorf("cannot complete Slack OAuth2 flow: missing access token")
}