Bug 877870 - Use favicon mem cache as fallback in TwoLinePageRow (r=sriram)

This commit is contained in:
Lucas Rocha 2013-06-11 17:57:44 +01:00
parent fa9b864b1c
commit 7daa548163

View File

@ -103,6 +103,9 @@ public class TwoLinePageRow extends LinearLayout {
}
setFaviconWithUrl(favicon, url);
} else {
// If favicons is not on the cursor, try to fetch it from the memory cache
setFaviconWithUrl(Favicons.getInstance().getFaviconFromMemCache(url), url);
}
}
}