Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ddd464cf authored by cketti's avatar cketti
Browse files

Update Apache James Mime4J to version 0.8.8

parent d858b20f
Loading
Loading
Loading
Loading
+6 −2
Original line number Diff line number Diff line
@@ -651,9 +651,13 @@ public class LocalStore {
        if (MimeUtil.ENC_QUOTED_PRINTABLE.equals(encoding)) {
            return new QuotedPrintableInputStream(rawInputStream) {
                @Override
                public void close() throws IOException {
                public void close() {
                    super.close();
                    try {
                        rawInputStream.close();
                    } catch (IOException e) {
                        throw new RuntimeException(e);
                    }
                }
            };
        }
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ preferencesFix = "1.1.0"
timber = "5.0.1"
koinCore = "3.3.2"
koinAndroid = "3.3.2"
mime4j = "0.8.6"
mime4j = "0.8.8"
okhttp = "4.10.0"
glide = "4.14.2"
moshi = "1.14.0"
+6 −2
Original line number Diff line number Diff line
@@ -149,9 +149,13 @@ public class MimeUtility {
            } else if (MimeUtil.ENC_QUOTED_PRINTABLE.equalsIgnoreCase(encoding)) {
                inputStream = new QuotedPrintableInputStream(rawInputStream) {
                    @Override
                    public void close() throws IOException {
                    public void close() {
                        super.close();
                        try {
                            closeInputStreamWithoutDeletingTemporaryFiles(rawInputStream);
                        } catch (IOException e) {
                            throw new RuntimeException(e);
                        }
                    }
                };
            } else {