-
-
Notifications
You must be signed in to change notification settings - Fork 28
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
Better handle GitHub bad token #15
Conversation
Just review the first commit. |
Git.hub/Client.cs
Outdated
repo.Detailed = true; | ||
return repo; | ||
} | ||
|
||
private T DoRequest<T>(IRestRequest request, bool shouldNotFail = false) where T : new() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please invert shouldNotFail
. It leads to a mental overload when staring at true
to understand what it means.
private T DoRequest<T>(IRestRequest request, bool shouldNotFail = false) where T : new() | |
private T DoRequest<T>(IRestRequest request, bool throwOnError = true) where T : new() |
Git.hub/Client.cs
Outdated
@@ -112,6 +113,32 @@ public Repository getRepository(string username, string repositoryName) | |||
return repo; | |||
} | |||
|
|||
private T DoRequest<T>(RestRequest request, bool shouldNotFail = false) where T : new() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please move the private method after publics.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK for me
if (repos == null || repos.Repositories == null) | ||
throw new Exception(string.Format("Could not search for {0}", query)); | ||
var repos = DoRequest<APIv2.RepositoryListV2>(request); | ||
if (repos?.Repositories == null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe add {} to conform with GE style (but will not be the same as other files in this submodule)
95e9f55
to
3605b4a
Compare
Updated. |
3605b4a
to
7a99961
Compare
Transform a NRE in an UnauthorizedAccessException with clearer message
First step to handle gitextensions/gitextensions#7641