Skip to content
This repository has been archived by the owner on Jun 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #535 from github/fixes/534-detect-enterprise-repos…
Browse files Browse the repository at this point in the history
…itories

Update octokit to 0.22.0
  • Loading branch information
shana authored Sep 5, 2016
2 parents 5cff6a6 + bf5e871 commit 8f3938f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions src/GitHub.App/Api/ApiClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,11 @@ public IObservable<Repository> GetRepositories()

public IObservable<Branch> GetBranches(string owner, string repo)
{
#pragma warning disable CS0618
// GetAllBranches is obsolete, but don't want to introduce the change to fix the
// warning in the PR, so disabling for now.
return gitHubClient.Repository.GetAllBranches(owner, repo);
#pragma warning restore
}

public IObservable<Repository> GetRepository(string owner, string repo)
Expand Down
2 changes: 1 addition & 1 deletion submodules/octokit.net
Submodule octokit.net updated 393 files

0 comments on commit 8f3938f

Please sign in to comment.