mirror of
https://github.com/mihonapp/mihon.git
synced 2025-06-25 18:47:51 +02:00
Fix a crash in the reader when restoring the instance. Removed capitalization on each word
This commit is contained in:
@ -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()
|
||||
|
Reference in New Issue
Block a user