mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-05 01:35:10 +01:00
Fix crash when opening the MangaController from... (#5419)
...the browse search null safe cast to TextView because when searching for manga in a source, the toolbar has no children and find() returns null.
This commit is contained in:
parent
ab73e98075
commit
ac6b4235b9
@ -296,7 +296,7 @@ class MangaController :
|
||||
val scrolledList = binding.fullRecycler ?: binding.infoRecycler!!
|
||||
if (toolbarTextView == null) {
|
||||
toolbarTextView = (activity as? MainActivity)?.binding?.toolbar?.children
|
||||
?.find { it is TextView } as TextView
|
||||
?.find { it is TextView } as? TextView
|
||||
}
|
||||
toolbarTextView?.alpha = when {
|
||||
// Specific alpha provided
|
||||
|
Loading…
Reference in New Issue
Block a user