feat: remove gif exif stripping exception

This commit is contained in:
Opliko
2023-12-03 23:17:23 +01:00
committed by Julian Lam
parent 0b3eb6c02d
commit f8219aa6cd

View File

@@ -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 {