Avoid crashing if getChapterUrl is not implemented

Fixes #9105
This commit is contained in:
arkon 2023-02-18 10:16:17 -05:00
parent b49280e347
commit ceaf579cb0

View File

@ -582,7 +582,12 @@ class ReaderViewModel(
val sChapter = getCurrentChapter()?.chapter ?: return null
val source = getSource() ?: return null
return source.getChapterUrl(sChapter)
return try {
source.getChapterUrl(sChapter)
} catch (e: Exception) {
logcat(LogPriority.ERROR, e)
null
}
}
/**