Skip to content

Commit

Permalink
Remove unnecessary word from error
Browse files Browse the repository at this point in the history
  • Loading branch information
enzowritescode committed Dec 20, 2024
1 parent f4bafd7 commit 99ebab3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/store.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func (p *Plugin) fetchOAuthUserInfo(tokenKey, userID string) (*zoom.OAuthUserInf

var info zoom.OAuthUserInfo
if err := json.Unmarshal(encoded, &info); err != nil {
return nil, errors.New("could not to parse OAuth access token")
return nil, errors.New("could not parse OAuth access token")
}

plainToken, err := decrypt([]byte(config.EncryptionKey), info.OAuthToken.AccessToken)
Expand Down

0 comments on commit 99ebab3

Please sign in to comment.