Polygerrit: Use "-S' instead of "-s" in branches/tags list

Change-Id: I27587f2836867a762fa1924369323660b3f44a5f
This commit is contained in:
David Pursehouse 2017-07-31 09:35:08 +01:00
parent b9578011f6
commit 6866eef95d

View File

@ -660,7 +660,7 @@
return this.fetchJSON(
`/projects/${encodeURIComponent(project)}/branches` +
`?n=${projectsBranchesPerPage + 1}&s=${offset}` +
`?n=${projectsBranchesPerPage + 1}&S=${offset}` +
this._computeFilter(filter)
);
},
@ -670,7 +670,7 @@
return this.fetchJSON(
`/projects/${encodeURIComponent(project)}/tags` +
`?n=${projectsTagsPerPage + 1}&s=${offset}` +
`?n=${projectsTagsPerPage + 1}&S=${offset}` +
this._computeFilter(filter)
);
},