Change the GetAll method by calling the other overload usign ApiOption.None

This commit is contained in:
Abdelkhalek Oussama Elhamer
2016-03-26 03:26:59 +01:00
parent 06ab549f75
commit 2e8317d536
@@ -33,7 +33,7 @@ namespace Octokit.Reactive
Ensure.ArgumentNotNullOrEmptyString(owner, "owner");
Ensure.ArgumentNotNullOrEmptyString(name, "name");
return _connection.GetAndFlattenAllPages<Release>(ApiUrls.Releases(owner, name));
return GetAll(owner, name, ApiOptions.None);
}
/// <summary>