Version 0.9.2

Fixes to notification text when there are multiple chapters
Simplified errors now show after restoring a backup on the popup dialog
Fixed last updated sorting being in a jumbled order after restoring (Note: if the list is still jumbled after restore, refersh your library)
Fixed notifcations not expanding on older devices
This commit is contained in:
Jay 2019-12-14 12:17:20 -08:00
parent 74644ec54e
commit cebed39b20
10 changed files with 87 additions and 17 deletions

View file

@ -68,7 +68,10 @@ open class SourceManager(private val context: Context) {
}
private fun getSourceNotInstalledException(): Exception {
return Exception(context.getString(R.string.source_not_installed, id.toString()))
return SourceNotFoundException(context.getString(R.string.source_not_installed, id
.toString()), id)
}
}
}
class SourceNotFoundException(message: String, val id: Long) : Exception(message)