mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-19 01:59:19 +01:00
Try to avoid crashing when unable to get backup filename for some reason
This commit is contained in:
parent
b92b6520cb
commit
be3e31ddc4
@ -203,7 +203,7 @@ class SettingsBackupController : SettingsController() {
|
|||||||
}
|
}
|
||||||
CODE_BACKUP_RESTORE -> {
|
CODE_BACKUP_RESTORE -> {
|
||||||
uri?.path?.let {
|
uri?.path?.let {
|
||||||
val fileName = DocumentFile.fromSingleUri(activity, uri)!!.name!!
|
val fileName = DocumentFile.fromSingleUri(activity, uri)?.name ?: uri.toString()
|
||||||
when {
|
when {
|
||||||
fileName.endsWith(".proto.gz") -> {
|
fileName.endsWith(".proto.gz") -> {
|
||||||
val options = arrayOf(
|
val options = arrayOf(
|
||||||
|
Loading…
Reference in New Issue
Block a user