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
1 changed files with 6 additions and 4 deletions

View File

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