Skip to content

Commit c2c4f64

Browse files
authored
Merge pull request #166 from cliengme/fix/postmessage-error
fix: Coudinary.UploadWidget postMessage issue (fixes #165)
2 parents b0a808e + 99a39a5 commit c2c4f64

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/runtime/components/CldUploadWidget.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ function invokeInstanceMethod(method: string) {
326326
}
327327
328328
if ( typeof widget?.value[method] === 'function' ) {
329-
widget.value[method](widget.value);
329+
widget.value[method]();
330330
}
331331
}
332332

0 commit comments

Comments
 (0)