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,12 +175,14 @@ public class ArticlePager extends Fragment {
}
}
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);
}
}
}
} else {
if (m_lastError == ApiError.LOGIN_FAILED) {