From c80ae8366432a1528b40d0e3f01d2c98f82d715d Mon Sep 17 00:00:00 2001 From: eikek Date: Mon, 21 Feb 2022 20:55:53 +0100 Subject: [PATCH] Compare zip file exstension case insensitive Some other filetypes, like office documents, are also zip file. To distinguish these without unpacking them, the file extensions is checked. Fixes: #1365 --- .../src/main/scala/docspell/joex/process/ExtractArchive.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/joex/src/main/scala/docspell/joex/process/ExtractArchive.scala b/modules/joex/src/main/scala/docspell/joex/process/ExtractArchive.scala index ef98b43d..17f90b59 100644 --- a/modules/joex/src/main/scala/docspell/joex/process/ExtractArchive.scala +++ b/modules/joex/src/main/scala/docspell/joex/process/ExtractArchive.scala @@ -93,7 +93,7 @@ object ExtractArchive { archive: Option[RAttachmentArchive] )(ra: RAttachment, pos: Int, mime: MimeType): F[Extracted] = mime match { - case MimeType.ZipMatch(_) if ra.name.exists(_.endsWith(".zip")) => + case MimeType.ZipMatch(_) if ra.name.exists(_.toLowerCase.endsWith(".zip")) => ctx.logger.info(s"Extracting zip archive ${ra.name.getOrElse("")}.") *> extractZip(ctx, archive)(ra, pos) .flatMap(cleanupParents(ctx, ra, archive))