From fbe0c1aec52710af8da10f38c2fd8c797e45d30c Mon Sep 17 00:00:00 2001 From: Eike Kettner Date: Thu, 20 Feb 2020 00:39:31 +0100 Subject: [PATCH] Allow more chars for mimetype --- modules/common/src/main/scala/docspell/common/MimeType.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/common/src/main/scala/docspell/common/MimeType.scala b/modules/common/src/main/scala/docspell/common/MimeType.scala index e3018580..bffbb667 100644 --- a/modules/common/src/main/scala/docspell/common/MimeType.scala +++ b/modules/common/src/main/scala/docspell/common/MimeType.scala @@ -27,7 +27,7 @@ object MimeType { MimeType("image", partFromString(sub).throwLeft) private[this] val validChars: Set[Char] = - (('A' to 'Z') ++ ('a' to 'z') ++ ('0' to '9') ++ "*-.").toSet + (('A' to 'Z') ++ ('a' to 'z') ++ ('0' to '9') ++ "*-.+").toSet def parse(str: String): Either[String, MimeType] = str.indexOf('/') match {