fix crash in articlepager when m_article is null

This commit is contained in:
Andrew Dolgov 2013-08-27 13:04:22 +04:00
parent f89bdad904
commit 6d016599b8

View File

@ -175,10 +175,12 @@ public class ArticlePager extends Fragment {
} }
} }
if (m_article.id == 0 || m_articles.indexOf(m_article) == -1) { if (m_article != null) {
if (m_articles.size() > 0) { if (m_article.id == 0 || m_articles.indexOf(m_article) == -1) {
m_article = m_articles.get(0); if (m_articles.size() > 0) {
m_listener.onArticleSelected(m_article, false); m_article = m_articles.get(0);
m_listener.onArticleSelected(m_article, false);
}
} }
} }