We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Lets say I listen to some push event and for some reason I decide to reject this push. I tried to do something like:
repos.on("push", (data: PushData) => { data.reject(403, `Rejected! Have a good day`) });
It really returns some error to the client, But it doesn't return the specific message I chose (It does send the correct code)
What am I doing wrong?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Lets say I listen to some push event and for some reason I decide to reject this push. I tried to do something like:
It really returns some error to the client, But it doesn't return the specific message I chose (It does send the correct code)
What am I doing wrong?
The text was updated successfully, but these errors were encountered: