Bug 701839 - Wrong favicon displayed when both default location and link exists (crash fix) CLOSED TREE

This commit is contained in:
Brian Nicholson 2011-11-17 14:34:11 -08:00
parent d3adf11251
commit c9f50a4283

View File

@ -267,7 +267,7 @@ public class Favicons {
byteStream = new ByteArrayInputStream(bytes);
image = (BitmapDrawable) Drawable.createFromStream(byteStream, "src");
}
} catch (IOException e) {
} catch (Exception e) {
Log.d(LOGTAG, "Error downloading favicon: " + e);
} finally {
if (urlConnection != null)