1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-02-07 02:30:10 -05:00

Update dependencies

This commit is contained in:
cketti 2014-12-22 22:36:50 +01:00
parent b0d401c3b7
commit c96a11212e
3 changed files with 4 additions and 9 deletions

View File

@ -9,7 +9,7 @@ repositories {
dependencies { dependencies {
compile 'org.apache.james:apache-mime4j-core:0.7.2' compile 'org.apache.james:apache-mime4j-core:0.7.2'
compile 'org.apache.james:apache-mime4j-dom:0.7.2' compile 'org.apache.james:apache-mime4j-dom:0.7.2'
compile 'commons-io:commons-io:2.0.1' compile 'commons-io:commons-io:2.4'
compile 'com.jcraft:jzlib:1.0.7' compile 'com.jcraft:jzlib:1.0.7'
compile 'com.beetstra.jutf7:jutf7:1.0.0' compile 'com.beetstra.jutf7:jutf7:1.0.0'
} }

View File

@ -12,10 +12,10 @@ dependencies {
compile project(':plugins:Android-PullToRefresh:library') compile project(':plugins:Android-PullToRefresh:library')
compile project(':plugins:HoloColorPicker') compile project(':plugins:HoloColorPicker')
compile project(':plugins:openpgp-api-library') compile project(':plugins:openpgp-api-library')
compile 'commons-io:commons-io:2.0.1' compile 'commons-io:commons-io:2.4'
compile 'com.android.support:support-v4:21.0.2' compile 'com.android.support:support-v4:21.0.2'
compile 'com.android.support:support-v13:21.0.2' compile 'com.android.support:support-v13:21.0.2'
compile 'net.sourceforge.htmlcleaner:htmlcleaner:2.2' compile 'net.sourceforge.htmlcleaner:htmlcleaner:2.10'
compile 'de.cketti.library.changelog:ckchangelog:1.2.1' compile 'de.cketti.library.changelog:ckchangelog:1.2.1'
} }

View File

@ -3173,12 +3173,7 @@ public class MessageCompose extends K9Activity implements OnClickListener,
TagNode node = cleaner.clean(content); TagNode node = cleaner.clean(content);
SimpleHtmlSerializer htmlSerialized = new SimpleHtmlSerializer(properties); SimpleHtmlSerializer htmlSerialized = new SimpleHtmlSerializer(properties);
try { content = htmlSerialized.getAsString(node, "UTF8");
content = htmlSerialized.getAsString(node, "UTF8");
} catch (java.io.IOException ioe) {
// Can't imagine this happening.
Log.e(K9.LOG_TAG, "Problem cleaning quoted message.", ioe);
}
} }
// Add the HTML reply header to the top of the content. // Add the HTML reply header to the top of the content.