1
0
mirror of https://github.com/moparisthebest/k-9 synced 2024-11-24 02:12:15 -05:00

Fix issue 6064: Inline images don't display on KitKat

Eliminate the invocation of
WebSettings.setBlockNetworkImage(boolean flag),
thus maintaining the the default setting of "false".

On Android versions prior to KitKat, this setting has no
effect on inline image attachments loaded with content:
URIs.  Such images would load regardless.

With KitKat, this setting does have an effect -- a
setting of "true" will block image attachments loaded
with content: URIs.

By removing this call, K-9 Mail behaves the same on KitKat
as on earlier Android versions, and the behavior on earlier
versions is unchanged.
This commit is contained in:
Joe Steele 2014-01-15 15:30:59 -05:00 committed by cketti
parent ecb4ed41ba
commit 094156cc2a

View File

@ -56,13 +56,14 @@ public class MessageWebView extends RigidWebView {
* @param shouldBlockNetworkData True if network data should be blocked, false to allow network data. * @param shouldBlockNetworkData True if network data should be blocked, false to allow network data.
*/ */
public void blockNetworkData(final boolean shouldBlockNetworkData) { public void blockNetworkData(final boolean shouldBlockNetworkData) {
WebSettings webSettings = getSettings(); /*
* Block network loads.
// Block network loads. *
webSettings.setBlockNetworkLoads(shouldBlockNetworkData); * Images with content: URIs will not be blocked, nor
* will network images that are already in the WebView cache.
// Block network images. *
webSettings.setBlockNetworkImage(shouldBlockNetworkData); */
getSettings().setBlockNetworkLoads(shouldBlockNetworkData);
} }