From d51e962696e6e3117f3a88b5e230e4bb88d55126 Mon Sep 17 00:00:00 2001 From: Brian Nicholson Date: Thu, 7 Jun 2012 17:19:34 -0700 Subject: [PATCH] Bug 760218 - Fix favicons not appearing for undefined size. r=margaret --- mobile/android/base/Tab.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mobile/android/base/Tab.java b/mobile/android/base/Tab.java index e7737c4ef76..24955640266 100644 --- a/mobile/android/base/Tab.java +++ b/mobile/android/base/Tab.java @@ -321,7 +321,7 @@ public final class Tab { // Only update the favicon if it's bigger than the current favicon. // We use -1 to represent icons with sizes="any". - if (size == -1 || size > mFaviconSize) { + if (size == -1 || size >= mFaviconSize) { mFaviconUrl = faviconUrl; mFaviconSize = size; Log.i(LOGTAG, "Updated favicon URL for tab with id: " + mId);