-
Notifications
You must be signed in to change notification settings - Fork 731
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
Reading a gist in anonymonous mode causes error #166
Comments
Fixed. |
Can you let me know what Maven version to use to get this fix, or do i need to pull the source and build? |
You should wait until release + 1-2 days for mirroring on maven repos. |
Thank you! Can you post the link here when it is posted? (As a historical record thing, when I search posts about how to fix something I hate coming to dead ends where the fix happened off camera) |
@madhephaestus i'm just monitoring commits on master to get new version ;) |
Confirmed 1.64 does not have this issue. |
When I run
GitHub github = GitHub.connectAnonymously();
GHGist gist = github.getGist(currentGist);
I get the following exception:
java.lang.NullPointerException
at java.util.Hashtable.put(Hashtable.java:464)
at org.kohsuke.github.GitHub.getUser(GitHub.java:293)
at org.kohsuke.github.GHGist.wrapUp(GHGist.java:106)
at org.kohsuke.github.GitHub.getGist(GitHub.java:370)
at ...
SInce i connected anynomously, why is it asking for the user? Is there something i can set to get it to ignore this?
The text was updated successfully, but these errors were encountered: