Skip to content

Commit b779937

Browse files
committed
BC-113: fixing folder limits
1 parent d5a2282 commit b779937

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

current/all/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<parent>
2525
<groupId>com.coresecure</groupId>
2626
<artifactId>brightcove</artifactId>
27-
<version>6.1.5</version>
27+
<version>6.1.6</version>
2828
<relativePath>../pom.xml</relativePath>
2929
</parent>
3030

current/analyse/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.coresecure</groupId>
2525
<artifactId>brightcove</artifactId>
26-
<version>6.1.5</version>
26+
<version>6.1.6</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

current/core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>com.coresecure</groupId>
2222
<artifactId>brightcove</artifactId>
23-
<version>6.1.5</version>
23+
<version>6.1.6</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626
<artifactId>brightcove.core</artifactId>

current/core/src/main/java/com/coresecure/brightcove/wrapper/api/CmsAPI.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ public JSONArray getVideosInFolder(String folder, int offset) {
745745
headers.put(Constants.AUTHENTICATION_HEADER, authToken.getTokenType() + " " + authToken.getToken());
746746
String targetURL = Constants.ACCOUNTS_API_PATH + account.getAccount_ID() + "/folders/" + folder + "/videos";
747747
try {
748-
String urlParameters = "offset=" + offset;
748+
String urlParameters = "limit=100&offset=" + offset;
749749
json = getJSONArrayResponse(targetURL, urlParameters, headers);
750750
} catch (Exception e) {
751751
LOGGER.error(e.getClass().getName(), e);

current/it.tests/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<parent>
2121
<groupId>com.coresecure</groupId>
2222
<artifactId>brightcove</artifactId>
23-
<version>6.1.5</version>
23+
<version>6.1.6</version>
2424
<relativePath>../pom.xml</relativePath>
2525
</parent>
2626

current/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<groupId>com.coresecure</groupId>
2222
<artifactId>brightcove</artifactId>
2323
<packaging>pom</packaging>
24-
<version>6.1.5</version>
24+
<version>6.1.6</version>
2525
<description>Brightcove Connector</description>
2626

2727
<modules>

current/ui.apps.structure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<groupId>com.coresecure</groupId>
1010
<artifactId>brightcove</artifactId>
11-
<version>6.1.5</version>
11+
<version>6.1.6</version>
1212
<relativePath>../pom.xml</relativePath>
1313
</parent>
1414

current/ui.apps/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.coresecure</groupId>
2525
<artifactId>brightcove</artifactId>
26-
<version>6.1.5</version>
26+
<version>6.1.6</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

current/ui.config/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.coresecure</groupId>
2525
<artifactId>brightcove</artifactId>
26-
<version>6.1.5</version>
26+
<version>6.1.6</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

current/ui.content/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<parent>
2424
<groupId>com.coresecure</groupId>
2525
<artifactId>brightcove</artifactId>
26-
<version>6.1.5</version>
26+
<version>6.1.6</version>
2727
<relativePath>../pom.xml</relativePath>
2828
</parent>
2929

0 commit comments

Comments
 (0)