From f8219aa6cd2589fdc7c1c7558e491c7a1cbd8bd9 Mon Sep 17 00:00:00 2001 From: Opliko Date: Sun, 3 Dec 2023 23:17:23 +0100 Subject: [PATCH] feat: remove gif exif stripping exception --- src/image.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/image.js b/src/image.js index 62f84d365e..4f07267f16 100644 --- a/src/image.js +++ b/src/image.js @@ -103,7 +103,7 @@ image.size = async function (path) { }; image.stripEXIF = async function (path) { - if (!meta.config.stripEXIFData || path.endsWith('.gif') || path.endsWith('.svg')) { + if (!meta.config.stripEXIFData || path.endsWith('.svg')) { return; } try {