We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 449b615 commit a587fa2Copy full SHA for a587fa2
1 file changed
src/plugins/cloudinary/models/video-source/video-source.js
@@ -47,7 +47,7 @@ class VideoSource extends BaseSource {
47
48
// Set extracted parameters using their respective methods
49
SOURCE_PARAMS.forEach(param => {
50
- if (options[param] !== undefined && this[param]) {
+ if (options[param] !== undefined && typeof this[param] === 'function') {
51
this[param](options[param]);
52
}
53
});
0 commit comments