Skip to content

Commit 596b457

Browse files
committed
fix bug with list archives when using a count
1 parent 99208ac commit 596b457

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/opentok/util/HttpClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ public String getArchives(int offset, int count) throws RequestException {
114114
if (offset != 0 || count != 1000) {
115115
url += "?";
116116
if (offset != 0) {
117-
url += ("offset=" + Integer.toString(offset));
117+
url += ("offset=" + Integer.toString(offset) + '&');
118118
}
119119
if (count != 1000) {
120120
url += ("count=" + Integer.toString(count));

0 commit comments

Comments
 (0)