Workaround base64 padding/start

This commit is contained in:
M66B
2024-02-14 09:54:24 +01:00
parent 93cbde951c
commit fbbdb84a25

View File

@@ -3486,6 +3486,9 @@ public class MessageHelper {
static byte[] decodeWord(String word, String encoding, String charset) throws IOException {
String e = encoding.trim();
if (e.equalsIgnoreCase("B"))
while (word.startsWith("="))
word = word.substring(1);
ByteArrayInputStream bis = new ByteArrayInputStream(ASCIIUtility.getBytes(word));
InputStream is;