Loading app/core/src/main/java/com/fsck/k9/mailstore/LocalStore.java +6 −2 Original line number Diff line number Diff line Loading @@ -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); } } }; } Loading gradle/libs.versions.toml +1 −1 Original line number Diff line number Diff line Loading @@ -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" Loading mail/common/src/main/java/com/fsck/k9/mail/internet/MimeUtility.java +6 −2 Original line number Diff line number Diff line Loading @@ -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 { Loading Loading
app/core/src/main/java/com/fsck/k9/mailstore/LocalStore.java +6 −2 Original line number Diff line number Diff line Loading @@ -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); } } }; } Loading
gradle/libs.versions.toml +1 −1 Original line number Diff line number Diff line Loading @@ -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" Loading
mail/common/src/main/java/com/fsck/k9/mail/internet/MimeUtility.java +6 −2 Original line number Diff line number Diff line Loading @@ -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 { Loading