mirror of
https://github.com/null2264/yokai.git
synced 2025-06-21 10:44:42 +00:00
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:
parent
74644ec54e
commit
cebed39b20
10 changed files with 87 additions and 17 deletions
|
@ -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)
|
Loading…
Add table
Add a link
Reference in a new issue