зеркало из https://github.com/mozilla/pjs.git
Bug 702761 - AsyncGetFaviconURLForPage should not warn on missing icons.
r=dietrich
This commit is contained in:
Родитель
5cf29a3409
Коммит
44387f7473
|
@ -872,6 +872,10 @@ AsyncGetFaviconURLForPage::Run()
|
|||
nsresult rv = FetchIconURL(mDB, mPageSpec, iconSpec);
|
||||
NS_ENSURE_SUCCESS(rv, rv);
|
||||
|
||||
// No icon was found.
|
||||
if (iconSpec.IsEmpty())
|
||||
return NS_OK;
|
||||
|
||||
// Now notify our callback of the icon spec we retrieved.
|
||||
IconData iconData;
|
||||
iconData.spec.Assign(iconSpec);
|
||||
|
|
Загрузка…
Ссылка в новой задаче