Skip to content

Commit bafbc75

Browse files
committed
#1036: prepend /repositories path in RtRepos#iterate
1 parent 09b8845 commit bafbc75

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/main/java/com/jcabi/github/RtRepos.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ public void remove(
9696
public Iterable<Repo> iterate(
9797
final String identifier) {
9898
return new RtPagination<>(
99-
this.entry.uri().queryParam("since", identifier).back(),
99+
this.entry.uri().path("/repositories")
100+
.queryParam("since", identifier).back(),
100101
object -> this.get(
101102
new Coordinates.Simple(object.getString("full_name"))
102103
)

0 commit comments

Comments
 (0)