Group 'Source not installed' cases in library update error log (#5589)

This commit is contained in:
FlaminSarge
2021-07-21 14:57:33 -07:00
committed by GitHub
parent 6ba779fb7a
commit 88619145d8
2 changed files with 8 additions and 2 deletions

View File

@@ -316,6 +316,9 @@ class LibraryUpdateService(
} catch (e: Throwable) {
val errorMessage = if (e is NoChaptersException) {
getString(R.string.no_chapters_error)
} else if (e is SourceManager.SourceNotInstalledException) {
// failedUpdates will already have the source, don't need to copy it into the message
getString(R.string.loader_not_implemented_error)
} else {
e.message
}