Bug 838745 - Prevent crashing if a promo type is dropped r=bnicholson

This commit is contained in:
Mark Finkle 2013-02-08 00:36:48 -05:00
Родитель 396989e0d1
Коммит c439835ec7
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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);