Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Don't forget to return when checking errors #7

Open
skamenetskiy opened this issue Feb 4, 2021 · 1 comment
Open

Don't forget to return when checking errors #7

skamenetskiy opened this issue Feb 4, 2021 · 1 comment
Assignees

Comments

@skamenetskiy
Copy link

if res.StatusCode != 201 {

you're only doing log.Println() inside this if and do not return, it will cause the code to panic here:

if res.StatusCode != 201 {

because res will be nil

@freddielunchbird
Copy link
Contributor

fixed and released

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants