diff --git a/src/core/operations/Image.js b/src/core/operations/Image.js index 7bf375dc..336e5931 100644 --- a/src/core/operations/Image.js +++ b/src/core/operations/Image.js @@ -55,6 +55,9 @@ const Image = { * @returns {string} */ removeEXIF(input, args) { + // Do nothing if input is empty + if (input.length === 0) return input; + try { return removeEXIF(input); } catch (err) {