We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a8c7df commit 9c9e47dCopy full SHA for 9c9e47d
cloudinary-core/src/main/java/com/cloudinary/Transformation.java
@@ -37,7 +37,7 @@ public class Transformation<T extends Transformation> implements Serializable {
37
"dl", "delay",
38
"dn", "density",
39
"f", "fetch_format",
40
- "fn", "custom_action",
+ "fn", "custom_function",
41
"fps", "fps",
42
"g", "gravity",
43
"l", "overlay",
@@ -867,6 +867,6 @@ public T variables(Expression... variables) {
867
* @return The transformation for chaining
868
*/
869
public T customFunction(CustomFunction action) {
870
- return param("custom_action", action.toString());
+ return param("custom_function", action.toString());
871
}
872
0 commit comments