Skip to content

Commit 9c9e47d

Browse files
authored
Rename internal custom action param for consistency
1 parent 2a8c7df commit 9c9e47d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public class Transformation<T extends Transformation> implements Serializable {
3737
"dl", "delay",
3838
"dn", "density",
3939
"f", "fetch_format",
40-
"fn", "custom_action",
40+
"fn", "custom_function",
4141
"fps", "fps",
4242
"g", "gravity",
4343
"l", "overlay",
@@ -867,6 +867,6 @@ public T variables(Expression... variables) {
867867
* @return The transformation for chaining
868868
*/
869869
public T customFunction(CustomFunction action) {
870-
return param("custom_action", action.toString());
870+
return param("custom_function", action.toString());
871871
}
872872
}

0 commit comments

Comments
 (0)