浏览代码

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.
jmir1 3 年之前
父节点
当前提交
ac6b4235b9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaController.kt

@@ -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