Skip to content

Commit

Permalink
BC-113: fixing folder limits
Browse files Browse the repository at this point in the history
  • Loading branch information
dcolvin committed May 30, 2024
1 parent d5a2282 commit b779937
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion current/all/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/analyse/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>brightcove.core</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ public JSONArray getVideosInFolder(String folder, int offset) {
headers.put(Constants.AUTHENTICATION_HEADER, authToken.getTokenType() + " " + authToken.getToken());
String targetURL = Constants.ACCOUNTS_API_PATH + account.getAccount_ID() + "/folders/" + folder + "/videos";
try {
String urlParameters = "offset=" + offset;
String urlParameters = "limit=100&offset=" + offset;
json = getJSONArrayResponse(targetURL, urlParameters, headers);
} catch (Exception e) {
LOGGER.error(e.getClass().getName(), e);
Expand Down
2 changes: 1 addition & 1 deletion current/it.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<packaging>pom</packaging>
<version>6.1.5</version>
<version>6.1.6</version>
<description>Brightcove Connector</description>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion current/ui.apps.structure/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/ui.apps/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/ui.config/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/ui.content/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down
2 changes: 1 addition & 1 deletion current/ui.tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<parent>
<groupId>com.coresecure</groupId>
<artifactId>brightcove</artifactId>
<version>6.1.5</version>
<version>6.1.6</version>
<relativePath>../pom.xml</relativePath>
</parent>

Expand Down

0 comments on commit b779937

Please sign in to comment.