зеркало из https://github.com/mozilla/gecko-dev.git
Bug 838745 - Prevent crashing if a promo type is dropped r=bnicholson
This commit is contained in:
Родитель
396989e0d1
Коммит
c439835ec7
|
@ -156,7 +156,7 @@ public class AboutHomePromoBox extends TextView implements View.OnClickListener
|
|||
}
|
||||
|
||||
// Try to maintain a promo type for the lifetime of the application
|
||||
if (AboutHomePromoBox.sTypeIndex == -1) {
|
||||
if (AboutHomePromoBox.sTypeIndex == -1 || AboutHomePromoBox.sTypeIndex > types.size()) {
|
||||
AboutHomePromoBox.sTypeIndex = new Random().nextInt(types.size());
|
||||
}
|
||||
mType = types.get(AboutHomePromoBox.sTypeIndex);
|
||||
|
|
Загрузка…
Ссылка в новой задаче