Skip to content

Commit 42f7f58

Browse files
committed
ACF compatibility missing semi-colon
1 parent aa6efe8 commit 42f7f58

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/lib/cloudinary.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ component {
199199
else if (len(autoUploadFolder) and refindnocase(reAuto, arguments.file)){
200200
stResult["type"] = "auto";
201201
stResult["source"] = rereplacenocase(arguments.file, reAuto, "\2");
202-
stResult["transformation"] = rereplace(arguments.file, reAuto, "\1")
202+
stResult["transformation"] = rereplace(arguments.file, reAuto, "\1");
203203
if (len(stResult["transformation"])){
204204
stResult["untransformed"] = apiURLPrefix & "/upload" & autoUploadFolder & stResult.source;
205205
}

0 commit comments

Comments
 (0)