Skip to content

Commit 21ce474

Browse files
author
Amir Tocker
committed
Add next_cursor to Api#transformation()
1 parent 33f1060 commit 21ce474

File tree

1 file changed

+1
-1
lines changed
  • cloudinary-core/src/main/java/com/cloudinary

1 file changed

+1
-1
lines changed

cloudinary-core/src/main/java/com/cloudinary/Api.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ public ApiResponse transformations(Map options) throws Exception {
165165

166166
public ApiResponse transformation(String transformation, Map options) throws Exception {
167167
if (options == null) options = ObjectUtils.emptyMap();
168-
return callApi(HttpMethod.GET, Arrays.asList("transformations", transformation), ObjectUtils.only(options, "max_results"), options);
168+
return callApi(HttpMethod.GET, Arrays.asList("transformations", transformation), ObjectUtils.only(options, "next_cursor", "max_results"), options);
169169
}
170170

171171
public ApiResponse deleteTransformation(String transformation, Map options) throws Exception {

0 commit comments

Comments
 (0)