Fix a crash in the reader when restoring the instance. Removed capitalization on each word

This commit is contained in:
len
2016-03-29 13:47:32 +02:00
parent c3425346b7
commit 06c63f1207
3 changed files with 9 additions and 9 deletions

View File

@ -73,8 +73,8 @@ class ReaderPresenter : BasePresenter<ReaderActivity>() {
super.onCreate(savedState)
if (savedState != null) {
source = sourceManager.get(manga.source)!!
manga = savedState.getSerializable(MANGA_KEY) as Manga
source = sourceManager.get(manga.source)!!
chapter = savedState.getSerializable(CHAPTER_KEY) as Chapter
requestedPage = savedState.getInt(PAGE_KEY)
initializeSubjects()