зеркало из https://github.com/mozilla/gecko-dev.git
Bug 696683 - handleGeckoMessage throws java.lang.NullPointerException on startup [r=dougt]
This commit is contained in:
Родитель
fd1359624f
Коммит
5045a8fd71
|
@ -479,6 +479,10 @@ abstract public class GeckoApp
|
|||
|
||||
void handleDocumentStart(final int tabId) {
|
||||
Tab tab = Tabs.getInstance().getTab(tabId);
|
||||
|
||||
if (tab == null)
|
||||
return;
|
||||
|
||||
tab.setLoading(true);
|
||||
|
||||
if (!Tabs.getInstance().isSelectedTab(tab))
|
||||
|
|
Загрузка…
Ссылка в новой задаче